Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: DEPS

Issue 1398383003: Add libyuv_unittest_apk target to run tests on Android (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « .gitignore ('k') | libyuv_test.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 vars = { 1 vars = {
2 # Override root_dir in your .gclient's custom_vars to specify a custom root 2 # Override root_dir in your .gclient's custom_vars to specify a custom root
3 # folder name. 3 # folder name.
4 "root_dir": "libyuv", 4 "root_dir": "libyuv",
5 "extra_gyp_flag": "-Dextra_gyp_flag=0", 5 "extra_gyp_flag": "-Dextra_gyp_flag=0",
6 6
7 # Roll the Chromium Git hash to pick up newer versions of all the 7 # Roll the Chromium Git hash to pick up newer versions of all the
8 # dependencies and tools linked to in setup_links.py. 8 # dependencies and tools linked to in setup_links.py.
9 'chromium_revision': 'bfea27af55be979d8146ed4d225f07a9cf1fba8b', # 7.27.2015 9 'chromium_revision': 'bb79186c63ff4eff7a2a318a21731005c53f269b',
10 } 10 }
11 11
12 hooks = [ 12 hooks = [
13 { 13 {
14 # Clone chromium and its deps. 14 # Clone chromium and its deps.
15 "name": "sync chromium", 15 "name": "sync chromium",
16 "pattern": ".", 16 "pattern": ".",
17 "action": ["python", "-u", Var("root_dir") + "/sync_chromium.py", 17 "action": ["python", "-u", Var("root_dir") + "/sync_chromium.py",
18 "--target-revision", Var("chromium_revision")], 18 "--target-revision", Var("chromium_revision")],
19 }, 19 },
20 { 20 {
21 # Create links to shared dependencies in Chromium. 21 # Create links to shared dependencies in Chromium.
22 "name": "setup_links", 22 "name": "setup_links",
23 "pattern": ".", 23 "pattern": ".",
24 "action": ["python", Var("root_dir") + "/setup_links.py"], 24 "action": ["python", Var("root_dir") + "/setup_links.py"],
25 }, 25 },
26 { 26 {
27 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 27 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
28 "pattern": ".", 28 "pattern": ".",
29 "action": ["python", Var("root_dir") + "/gyp_libyuv"], 29 "action": ["python", Var("root_dir") + "/gyp_libyuv"],
30 }, 30 },
31 ] 31 ]
OLDNEW
« no previous file with comments | « .gitignore ('k') | libyuv_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698