Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # This file contains dependencies for WebRTC that are not shared with Chromium. | 1 # This file contains dependencies for WebRTC that are not shared with Chromium. |
| 2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a | 2 # If you wish to add a dependency that is present in Chromium's src/DEPS or a |
| 3 # directory from the Chromium checkout, you should add it to setup_links.py | 3 # directory from the Chromium checkout, you should add it to setup_links.py |
| 4 # instead. | 4 # instead. |
| 5 | 5 |
| 6 vars = { | 6 vars = { |
| 7 'extra_gyp_flag': '-Dextra_gyp_flag=0', | 7 'extra_gyp_flag': '-Dextra_gyp_flag=0', |
| 8 'chromium_git': 'https://chromium.googlesource.com', | 8 'chromium_git': 'https://chromium.googlesource.com', |
| 9 'chromium_revision': 'b8ff10300d8a3eed9a7e7713c2ef0606d95a42f2', | 9 'chromium_revision': 'b8ff10300d8a3eed9a7e7713c2ef0606d95a42f2', |
| 10 } | 10 } |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 '+talk', | 41 '+talk', |
| 42 '+testing', | 42 '+testing', |
| 43 '+third_party', | 43 '+third_party', |
| 44 '+unicode', | 44 '+unicode', |
| 45 '+webrtc', | 45 '+webrtc', |
| 46 '+vpx', | 46 '+vpx', |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 hooks = [ | 49 hooks = [ |
| 50 { | 50 { |
| 51 # This clobbers when necessary (based on get_landmines.py). It must be the | |
| 52 # first hook so that other things that get/generate into the output | |
| 53 # directory will not subsequently be clobbered. | |
| 54 'name': 'landmines', | |
| 55 'pattern': '.', | |
| 56 'action': [ | |
| 57 'python', | |
| 58 'src/build/landmines.py', | |
| 59 '--landmine-scripts', | |
| 60 'src/webrtc/build/get_landmines.py', | |
| 61 '--src-dir', | |
| 62 'src', | |
|
Michael Achenbach
2015/10/15 07:38:20
How is that different to the old default value SRC
kjellander_chromium
2015/10/15 10:51:41
I understand your confusion, but since we're using
| |
| 63 ], | |
| 64 }, | |
| 65 { | |
| 51 # Check for legacy named top-level dir (named 'trunk'). | 66 # Check for legacy named top-level dir (named 'trunk'). |
| 52 'name': 'check_root_dir_name', | 67 'name': 'check_root_dir_name', |
| 53 'pattern': '.', | 68 'pattern': '.', |
| 54 'action': ['python','-c', | 69 'action': ['python','-c', |
| 55 ('import os,sys;' | 70 ('import os,sys;' |
| 56 'script = os.path.join("trunk","check_root_dir.py");' | 71 'script = os.path.join("trunk","check_root_dir.py");' |
| 57 '_ = os.system("%s %s" % (sys.executable,script)) ' | 72 '_ = os.system("%s %s" % (sys.executable,script)) ' |
| 58 'if os.path.exists(script) else 0')], | 73 'if os.path.exists(script) else 0')], |
| 59 }, | 74 }, |
| 60 { | 75 { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 92 }, | 107 }, |
| 93 { | 108 { |
| 94 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 109 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 95 'name': 'gyp', | 110 'name': 'gyp', |
| 96 'pattern': '.', | 111 'pattern': '.', |
| 97 'action': ['python', 'src/webrtc/build/gyp_webrtc', | 112 'action': ['python', 'src/webrtc/build/gyp_webrtc', |
| 98 Var('extra_gyp_flag')], | 113 Var('extra_gyp_flag')], |
| 99 }, | 114 }, |
| 100 ] | 115 ] |
| 101 | 116 |
| OLD | NEW |