-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to version 1861, git revision 88b050f337cc0ca2a51800fe7bf4737222c87344 from https://chromium.googlesource.com/libyuv/libyuv/
- Loading branch information
Showing
222 changed files
with
111,006 additions
and
37,106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Defines the Chromium style for automatic reformatting. | ||
# http://clang.llvm.org/docs/ClangFormatStyleOptions.html | ||
BasedOnStyle: Chromium | ||
--- | ||
Language: Java | ||
BasedOnStyle: Google |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright 2015 The LibYuv Project Authors. All rights reserved. | ||
# | ||
# Use of this source code is governed by a BSD-style license | ||
# that can be found in the LICENSE file in the root of the source | ||
# tree. An additional intellectual property rights grant can be found | ||
# in the file PATENTS. All contributing project authors may | ||
# be found in the AUTHORS file in the root of the source tree. | ||
|
||
import("//build/dotfile_settings.gni") | ||
|
||
# The location of the build configuration file. | ||
buildconfig = "//build/config/BUILDCONFIG.gn" | ||
|
||
# The python interpreter to use by default. On Windows, this will look | ||
# for python3.exe and python3.bat. | ||
script_executable = "python3" | ||
|
||
# The secondary source root is a parallel directory tree where | ||
# GN build files are placed when they can not be placed directly | ||
# in the source tree, e.g. for third party source trees. | ||
secondary_source = "//build/secondary/" | ||
|
||
# These are the targets to check headers for by default. The files in targets | ||
# matching these patterns (see "gn help label_pattern" for format) will have | ||
# their includes checked for proper dependencies when you run either | ||
# "gn check" or "gn gen --check". | ||
check_targets = [ "//libyuv/*" ] | ||
|
||
# These are the list of GN files that run exec_script. This whitelist exists | ||
# to force additional review for new uses of exec_script, which is strongly | ||
# discouraged except for gypi_to_gn calls. | ||
exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + | ||
[ "//build_overrides/build.gni" ] | ||
|
||
default_args = { | ||
mac_sdk_min = "10.12" | ||
ios_deployment_target = "12.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# This is a vpython "spec" file. | ||
# | ||
# It describes patterns for python wheel dependencies of the python scripts in | ||
# the chromium repo, particularly for dependencies that have compiled components | ||
# (since pure-python dependencies can be easily vendored into third_party). | ||
# | ||
# When vpython is invoked, it finds this file and builds a python VirtualEnv, | ||
# containing all of the dependencies described in this file, fetching them from | ||
# CIPD (the "Chrome Infrastructure Package Deployer" service). Unlike `pip`, | ||
# this never requires the end-user machine to have a working python extension | ||
# compilation environment. All of these packages are built using: | ||
# https://chromium.googlesource.com/infra/infra/+/master/infra/tools/dockerbuild/ | ||
# | ||
# All python scripts in the repo share this same spec, to avoid dependency | ||
# fragmentation. | ||
# | ||
# If you have depot_tools installed in your $PATH, you can invoke python scripts | ||
# in this repo by running them as you normally would run them, except | ||
# substituting `vpython` instead of `python` on the command line, e.g.: | ||
# vpython path/to/script.py some --arguments | ||
# | ||
# Read more about `vpython` and how to modify this file here: | ||
# https://chromium.googlesource.com/infra/infra/+/master/doc/users/vpython.md | ||
|
||
python_version: "2.7" | ||
|
||
# Used by: | ||
# third_party/catapult | ||
wheel: < | ||
name: "infra/python/wheels/psutil/${platform}_${py_python}_${py_abi}" | ||
version: "version:5.2.2" | ||
> | ||
|
||
# Used by: | ||
# third_party/catapult | ||
wheel: < | ||
name: "infra/python/wheels/pypiwin32/${vpython_platform}" | ||
version: "version:219" | ||
match_tag: < | ||
platform: "win32" | ||
> | ||
match_tag: < | ||
platform: "win_amd64" | ||
> | ||
> | ||
|
||
# Used by: | ||
# build/android | ||
wheel: < | ||
name: "infra/python/wheels/requests-py2_py3" | ||
version: "version:2.13.0" | ||
> |
Oops, something went wrong.