OLD | NEW |
1 # When adding a new dependency, please update the top-level .gitignore file | 1 # When adding a new dependency, please update the top-level .gitignore file |
2 # to list the dependency's destination directory. | 2 # to list the dependency's destination directory. |
3 | 3 |
4 vars = { | 4 vars = { |
5 # Use this googlecode_url variable only if there is an internal mirror for it. | 5 # Use this googlecode_url variable only if there is an internal mirror for it. |
6 # If you do not know, use the full path while defining your new deps entry. | 6 # If you do not know, use the full path while defining your new deps entry. |
7 "googlecode_url": "http://%s.googlecode.com/svn", | 7 "googlecode_url": "http://%s.googlecode.com/svn", |
8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
9 "webkit_trunk": "http://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 | 144 |
145 "src/chrome/test/data/perf/frame_rate/content": | 145 "src/chrome/test/data/perf/frame_rate/content": |
146 "/trunk/deps/frame_rate/content@93671", | 146 "/trunk/deps/frame_rate/content@93671", |
147 | 147 |
148 "src/chrome/test/data/perf/third_party/octane": | 148 "src/chrome/test/data/perf/third_party/octane": |
149 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", | 149 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", |
150 | 150 |
151 "src/third_party/bidichecker": | 151 "src/third_party/bidichecker": |
152 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 152 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
153 | 153 |
154 "src/third_party/v8-i18n": | |
155 (Var("googlecode_url") % "v8-i18n") + "/trunk@191", | |
156 | |
157 # When roll to another webgl conformance tests revision, please goto | 154 # When roll to another webgl conformance tests revision, please goto |
158 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. | 155 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. |
159 "src/third_party/webgl_conformance": | 156 "src/third_party/webgl_conformance": |
160 "/trunk/deps/third_party/webgl/sdk/tests@202601", | 157 "/trunk/deps/third_party/webgl/sdk/tests@202601", |
161 | 158 |
162 "src/third_party/swig/Lib": | 159 "src/third_party/swig/Lib": |
163 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), | 160 "/trunk/deps/third_party/swig/Lib@" + Var("swig_revision"), |
164 | 161 |
165 # Make sure you update the two functional.DEPS and webdriver.DEPS too. | 162 # Make sure you update the two functional.DEPS and webdriver.DEPS too. |
166 "src/third_party/webdriver/pylib": | 163 "src/third_party/webdriver/pylib": |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 "pattern": ".", | 618 "pattern": ".", |
622 "action": ["python", "src/build/gyp_chromium"], | 619 "action": ["python", "src/build/gyp_chromium"], |
623 }, | 620 }, |
624 { | 621 { |
625 # Check for landmines (reasons to clobber the build). | 622 # Check for landmines (reasons to clobber the build). |
626 "name": "landmines", | 623 "name": "landmines", |
627 "pattern": ".", | 624 "pattern": ".", |
628 "action": ["python", "src/build/landmines.py"], | 625 "action": ["python", "src/build/landmines.py"], |
629 }, | 626 }, |
630 ] | 627 ] |
OLD | NEW |