diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /media/libyuv/DEPS | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/libyuv/DEPS')
-rw-r--r-- | media/libyuv/DEPS | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/media/libyuv/DEPS b/media/libyuv/DEPS new file mode 100644 index 000000000..0a450050b --- /dev/null +++ b/media/libyuv/DEPS @@ -0,0 +1,42 @@ +vars = { + # Override root_dir in your .gclient's custom_vars to specify a custom root + # folder name. + 'root_dir': 'libyuv', + 'extra_gyp_flag': '-Dextra_gyp_flag=0', + 'chromium_git': 'https://chromium.googlesource.com', + + # Roll the Chromium Git hash to pick up newer versions of all the + # dependencies and tools linked to in setup_links.py. + 'chromium_revision': '2a818f54130d8c93f81490adce5a1e87307bf5f0', +} + +# NOTE: Prefer revision numbers to tags for svn deps. Use http rather than +# https; the latter can cause problems for users behind proxies. +deps = { + Var('root_dir') + '/third_party/gflags/src': + Var('chromium_git') + '/external/github.com/gflags/gflags@03bebcb065c83beff83d50ae025a55a4bf94dfca', +} + +# Define rules for which include paths are allowed in our source. +include_rules = [ '+gflags' ] + +hooks = [ + { + # Clone chromium and its deps. + 'name': 'sync chromium', + 'pattern': '.', + 'action': ['python', '-u', Var('root_dir') + '/sync_chromium.py', + '--target-revision', Var('chromium_revision')], + }, + { + # Create links to shared dependencies in Chromium. + 'name': 'setup_links', + 'pattern': '.', + 'action': ['python', Var('root_dir') + '/setup_links.py'], + }, + { + # A change to a .gyp, .gypi, or to GYP itself should run the generator. + 'pattern': '.', + 'action': ['python', Var('root_dir') + '/gyp_libyuv'], + }, +] |