Chromium Code Reviews| OLD | NEW |
|---|---|
| 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': 'bb79186c63ff4eff7a2a318a21731005c53f269b', | 9 'chromium_revision': 'bb79186c63ff4eff7a2a318a21731005c53f269b', |
| 10 } | 10 } |
| 11 | 11 |
| 12 # NOTE: Prefer revision numbers to tags for svn deps. Use http rather than | |
| 13 # https; the latter can cause problems for users behind proxies. | |
| 14 deps = { | |
| 15 # When rolling gflags, also update | |
|
kjellander_chromium
2015/10/15 19:29:49
Remove line 15-16 since it only applies to WebRTC.
fbarchard
2015/10/15 23:26:06
Done.
| |
| 16 # https://chromium.googlesource.com/chromium/deps/webrtc/webrtc.DEPS | |
| 17 'src/third_party/gflags/src': | |
| 18 Var('chromium_git') + '/external/gflags/src@e7390f9185c75f8d902c05ed7d20bb94 eb914d0c', # from svn revision 82 | |
| 19 | |
| 20 'src/third_party/junit-jar': | |
|
kjellander_chromium
2015/10/15 19:29:49
You don't need junit unless you plan start running
fbarchard
2015/10/15 23:26:06
Done.
| |
| 21 Var('chromium_git') + '/external/webrtc/deps/third_party/junit@f35596b476aa6 e62fd3b3857b9942ddcd13ce35e', # from svn revision 3367 | |
| 22 } | |
| 23 | |
| 24 # Define rules for which include paths are allowed in our source. | |
| 25 include_rules = [ '+gflags' ] | |
| 26 | |
| 12 hooks = [ | 27 hooks = [ |
| 13 { | 28 { |
| 14 # Clone chromium and its deps. | 29 # Clone chromium and its deps. |
| 15 "name": "sync chromium", | 30 "name": "sync chromium", |
| 16 "pattern": ".", | 31 "pattern": ".", |
| 17 "action": ["python", "-u", Var("root_dir") + "/sync_chromium.py", | 32 "action": ["python", "-u", Var("root_dir") + "/sync_chromium.py", |
| 18 "--target-revision", Var("chromium_revision")], | 33 "--target-revision", Var("chromium_revision")], |
| 19 }, | 34 }, |
| 20 { | 35 { |
| 21 # Create links to shared dependencies in Chromium. | 36 # Create links to shared dependencies in Chromium. |
| 22 "name": "setup_links", | 37 "name": "setup_links", |
| 23 "pattern": ".", | 38 "pattern": ".", |
| 24 "action": ["python", Var("root_dir") + "/setup_links.py"], | 39 "action": ["python", Var("root_dir") + "/setup_links.py"], |
| 25 }, | 40 }, |
| 26 { | 41 { |
| 27 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 42 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 28 "pattern": ".", | 43 "pattern": ".", |
| 29 "action": ["python", Var("root_dir") + "/gyp_libyuv"], | 44 "action": ["python", Var("root_dir") + "/gyp_libyuv"], |
| 30 }, | 45 }, |
| 31 ] | 46 ] |
| OLD | NEW |