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", |
Dirk Pranke
2013/04/11 03:41:57
Is this still the version we should be using for w
cmp
2013/04/11 04:16:45
TODO is fine, but please don't change the var name
| |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
11 "webkit_revision": "148098", | 11 "webkit_revision": "148098", |
abarth-chromium
2013/04/11 04:03:16
We should also rename this to blink_revision at so
cmp
2013/04/11 04:16:45
I recommend not changing this at this time. Other
abarth-chromium
2013/04/11 04:22:45
Make sense.
| |
12 "chromium_git": "https://chromium.googlesource.com", | 12 "chromium_git": "https://chromium.googlesource.com", |
13 "chromiumos_git": "https://chromium.googlesource.com/chromiumos", | 13 "chromiumos_git": "https://chromium.googlesource.com/chromiumos", |
14 "swig_revision": "69281", | 14 "swig_revision": "69281", |
15 "nacl_revision": "11151", | 15 "nacl_revision": "11151", |
16 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS | 16 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS |
17 # to update other nacl_*_revision's. | 17 # to update other nacl_*_revision's. |
18 "nacl_tools_revision": "11040", # native_client/DEPS: tools_rev | 18 "nacl_tools_revision": "11040", # native_client/DEPS: tools_rev |
19 "gtm_revision": "608", | 19 "gtm_revision": "608", |
20 | 20 |
21 "libjingle_revision": "302", | 21 "libjingle_revision": "302", |
(...skipping 20 matching lines...) Expand all Loading... | |
42 "nss_revision": "191424", | 42 "nss_revision": "191424", |
43 # Three lines of non-changing comments so that | 43 # Three lines of non-changing comments so that |
44 # the commit queue can handle CLs rolling swarm_client | 44 # the commit queue can handle CLs rolling swarm_client |
45 # and whatever else without interference from each other. | 45 # and whatever else without interference from each other. |
46 "swarm_revision": "193231", | 46 "swarm_revision": "193231", |
47 # Three lines of non-changing comments so that | 47 # Three lines of non-changing comments so that |
48 # the commit queue can handle CLs rolling openssl | 48 # the commit queue can handle CLs rolling openssl |
49 # and whatever else without interference from each other. | 49 # and whatever else without interference from each other. |
50 "openssl_revision": "191822", | 50 "openssl_revision": "191822", |
51 | 51 |
52 "ios_webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 52 "ios_webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
abarth-chromium
2013/04/11 04:05:27
Should this point to blink as well?
cmp
2013/04/11 04:16:45
No, this should be left as-is for now.
| |
53 # Three lines of non-changing comments so that | 53 # Three lines of non-changing comments so that |
54 # the commit queue can handle CLs rolling openssl | 54 # the commit queue can handle CLs rolling openssl |
55 # and whatever else without interference from each other. | 55 # and whatever else without interference from each other. |
56 "ios_webkit_revision": "147503", | 56 "ios_webkit_revision": "147503", |
57 } | 57 } |
58 | 58 |
59 deps = { | 59 deps = { |
60 "src/breakpad/src": | 60 "src/breakpad/src": |
61 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1139", | 61 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@1139", |
62 | 62 |
(...skipping 11 matching lines...) Expand all Loading... | |
74 | 74 |
75 "src/testing/gmock": | 75 "src/testing/gmock": |
76 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 76 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
77 | 77 |
78 "src/third_party/angle": | 78 "src/third_party/angle": |
79 (Var("googlecode_url") % "angleproject") + "/trunk@2040", | 79 (Var("googlecode_url") % "angleproject") + "/trunk@2040", |
80 | 80 |
81 "src/third_party/trace-viewer": | 81 "src/third_party/trace-viewer": |
82 (Var("googlecode_url") % "trace-viewer") + "/trunk@251", | 82 (Var("googlecode_url") % "trace-viewer") + "/trunk@251", |
83 | 83 |
84 # Note that this is *not* where we check out WebKit -- this just | |
85 # puts some extra files into place for the real WebKit checkout to | |
86 # happen. See lines mentioning "webkit_revision" for the real | |
87 # WebKit checkout. | |
88 "src/third_party/WebKit": | 84 "src/third_party/WebKit": |
89 "/trunk/deps/third_party/WebKit@76115", | 85 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
90 | 86 |
91 "src/third_party/icu": | 87 "src/third_party/icu": |
92 "/trunk/deps/third_party/icu46@192960", | 88 "/trunk/deps/third_party/icu46@192960", |
93 | 89 |
94 "src/third_party/libexif/sources": | 90 "src/third_party/libexif/sources": |
95 "/trunk/deps/third_party/libexif/sources@146817", | 91 "/trunk/deps/third_party/libexif/sources@146817", |
96 | 92 |
97 "src/third_party/hunspell": | 93 "src/third_party/hunspell": |
98 "/trunk/deps/third_party/hunspell@184822", | 94 "/trunk/deps/third_party/hunspell@184822", |
99 | 95 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
141 | 137 |
142 "src/third_party/skia/src": | 138 "src/third_party/skia/src": |
143 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), | 139 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), |
144 | 140 |
145 "src/third_party/skia/gyp": | 141 "src/third_party/skia/gyp": |
146 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"), | 142 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"), |
147 | 143 |
148 "src/third_party/skia/include": | 144 "src/third_party/skia/include": |
149 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), | 145 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), |
150 | 146 |
151 "src/third_party/WebKit/LayoutTests": | |
152 Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"), | |
153 | |
154 "src/third_party/WebKit/Source": | |
155 Var("webkit_trunk") + "/Source@" + Var("webkit_revision"), | |
156 | |
157 "src/third_party/WebKit/Tools/DumpRenderTree": | |
158 Var("webkit_trunk") + "/Tools/DumpRenderTree@" + Var("webkit_revision"), | |
159 | |
160 "src/third_party/WebKit/Tools/Scripts": | |
161 Var("webkit_trunk") + "/Tools/Scripts@" + Var("webkit_revision"), | |
162 | |
163 "src/third_party/WebKit/Tools/TestWebKitAPI": | |
164 Var("webkit_trunk") + "/Tools/TestWebKitAPI@" + Var("webkit_revision"), | |
165 | |
166 "src/third_party/ots": | 147 "src/third_party/ots": |
167 (Var("googlecode_url") % "ots") + "/trunk@97", | 148 (Var("googlecode_url") % "ots") + "/trunk@97", |
168 | 149 |
169 "src/tools/page_cycler/acid3": | 150 "src/tools/page_cycler/acid3": |
170 "/trunk/deps/page_cycler/acid3@171600", | 151 "/trunk/deps/page_cycler/acid3@171600", |
171 | 152 |
172 "src/chrome/test/data/perf/canvas_bench": | 153 "src/chrome/test/data/perf/canvas_bench": |
173 "/trunk/deps/canvas_bench@122605", | 154 "/trunk/deps/canvas_bench@122605", |
174 | 155 |
175 "src/chrome/test/data/perf/frame_rate/content": | 156 "src/chrome/test/data/perf/frame_rate/content": |
176 "/trunk/deps/frame_rate/content@93671", | 157 "/trunk/deps/frame_rate/content@93671", |
177 | 158 |
178 "src/chrome/test/data/perf/third_party/octane": | 159 "src/chrome/test/data/perf/third_party/octane": |
179 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", | 160 (Var("googlecode_url") % "octane-benchmark") + "/trunk@19", |
180 | 161 |
181 "src/third_party/bidichecker": | 162 "src/third_party/bidichecker": |
182 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", | 163 (Var("googlecode_url") % "bidichecker") + "/trunk/lib@4", |
183 | 164 |
184 "src/third_party/v8-i18n": | 165 "src/third_party/v8-i18n": |
185 (Var("googlecode_url") % "v8-i18n") + "/trunk@171", | 166 (Var("googlecode_url") % "v8-i18n") + "/trunk@171", |
186 | 167 |
187 # When roll to another webgl conformance tests revision, please goto | 168 # When roll to another webgl conformance tests revision, please goto |
188 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. | 169 # chrome/test/gpu and run generate_webgl_conformance_test_list.py. |
189 "src/third_party/webgl_conformance": | 170 "src/third_party/webgl_conformance": |
190 "/trunk/deps/third_party/webgl/sdk/tests@170088", | 171 "/trunk/deps/third_party/webgl/sdk/tests@170088", |
191 | 172 |
192 # We run these layout tests as UI tests. Since many of the buildbots that | 173 # We run these layout tests as UI tests. Since many of the buildbots that |
193 # run layout tests do NOT have access to the LayoutTest directory, we need | 174 # run layout tests do NOT have access to the LayoutTest directory, we need |
194 # to map them here. In practice, these do not take up much space. | 175 # to map them here. In practice, these do not take up much space. |
176 # | |
177 # TODO(dpranke): http://crbug.com/230215 . Remove these and update the | |
178 # tests since we're now always pulling the whole Blink repo. | |
179 # | |
180 # | |
195 "src/content/test/data/layout_tests/LayoutTests/fast/events": | 181 "src/content/test/data/layout_tests/LayoutTests/fast/events": |
196 Var("webkit_trunk") + "/LayoutTests/fast/events@" + | 182 Var("webkit_trunk") + "/LayoutTests/fast/events@" + |
197 Var("webkit_revision"), | 183 Var("webkit_revision"), |
198 "src/content/test/data/layout_tests/LayoutTests/fast/js/resources": | 184 "rc/content/test/data/layout_tests/LayoutTests/fast/js/resources": |
abarth-chromium
2013/04/11 04:03:16
Looks like you've got a stray edit here.
| |
199 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + | 185 Var("webkit_trunk") + "/LayoutTests/fast/js/resources@" + |
200 Var("webkit_revision"), | 186 Var("webkit_revision"), |
201 "src/content/test/data/layout_tests/LayoutTests/fast/workers": | 187 "src/content/test/data/layout_tests/LayoutTests/fast/workers": |
202 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + | 188 Var("webkit_trunk") + "/LayoutTests/fast/workers@" + |
203 Var("webkit_revision"), | 189 Var("webkit_revision"), |
204 "src/content/test/data/layout_tests/LayoutTests/http/tests/resources": | 190 "src/content/test/data/layout_tests/LayoutTests/http/tests/resources": |
205 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + | 191 Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + |
206 Var("webkit_revision"), | 192 Var("webkit_revision"), |
207 "src/content/test/data/layout_tests/LayoutTests/http/tests/workers": | 193 "src/content/test/data/layout_tests/LayoutTests/http/tests/workers": |
208 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + | 194 Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
485 "src/third_party/sfntly/cpp/src": None, | 471 "src/third_party/sfntly/cpp/src": None, |
486 "src/third_party/smhasher/src": None, | 472 "src/third_party/smhasher/src": None, |
487 "src/third_party/snappy/src": None, | 473 "src/third_party/snappy/src": None, |
488 "src/third_party/swig/Lib": None, | 474 "src/third_party/swig/Lib": None, |
489 "src/third_party/undoview": None, | 475 "src/third_party/undoview": None, |
490 "src/third_party/v8-i18n": None, | 476 "src/third_party/v8-i18n": None, |
491 "src/third_party/webdriver/pylib": None, | 477 "src/third_party/webdriver/pylib": None, |
492 "src/third_party/webpagereplay": None, | 478 "src/third_party/webpagereplay": None, |
493 "src/third_party/webrtc": None, | 479 "src/third_party/webrtc": None, |
494 "src/third_party/WebKit": None, | 480 "src/third_party/WebKit": None, |
495 "src/third_party/WebKit/LayoutTests": None, | |
496 "src/third_party/WebKit/Source": None, | |
497 "src/third_party/WebKit/Tools/DumpRenderTree": None, | |
498 "src/third_party/WebKit/Tools/Scripts": None, | |
499 "src/third_party/WebKit/Tools/TestWebKitAPI": None, | |
500 "src/third_party/yasm/source/patched-yasm": None, | 481 "src/third_party/yasm/source/patched-yasm": None, |
501 "src/tools/page_cycler/acid3": None, | 482 "src/tools/page_cycler/acid3": None, |
502 "src/v8": None, | 483 "src/v8": None, |
503 }, | 484 }, |
504 "mac": { | 485 "mac": { |
505 "src/chrome/tools/test/reference_build/chrome_mac": | 486 "src/chrome/tools/test/reference_build/chrome_mac": |
506 "/trunk/deps/reference_builds/chrome_mac@137727", | 487 "/trunk/deps/reference_builds/chrome_mac@137727", |
507 | 488 |
508 "src/third_party/GTM": | 489 "src/third_party/GTM": |
509 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 490 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
(...skipping 24 matching lines...) Expand all Loading... | |
534 "src/third_party/swig/linux": | 515 "src/third_party/swig/linux": |
535 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), | 516 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), |
536 | 517 |
537 "src/third_party/lss": | 518 "src/third_party/lss": |
538 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + | 519 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + |
539 Var("lss_revision")), | 520 Var("lss_revision")), |
540 | 521 |
541 "src/third_party/openssl": | 522 "src/third_party/openssl": |
542 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), | 523 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), |
543 | 524 |
544 "src/third_party/WebKit/Tools/gdb": | |
545 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), | |
546 | |
547 "src/third_party/gold": | 525 "src/third_party/gold": |
548 "/trunk/deps/third_party/gold@168091", | 526 "/trunk/deps/third_party/gold@168091", |
549 | 527 |
550 "src/third_party/libmtp": | 528 "src/third_party/libmtp": |
551 "/trunk/deps/third_party/libmtp@178673", | 529 "/trunk/deps/third_party/libmtp@178673", |
552 | 530 |
553 # Used on Linux only. CrOS already has a copy. | 531 # Used on Linux only. CrOS already has a copy. |
554 "src/third_party/mtpd/source": | 532 "src/third_party/mtpd/source": |
555 Var("chromiumos_git") + "/platform/mtpd.git" + | 533 Var("chromiumos_git") + "/platform/mtpd.git" + |
556 "@132604f107368f617a3073ba2d515b78641ceeed", | 534 "@132604f107368f617a3073ba2d515b78641ceeed", |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
705 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 683 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
706 "pattern": ".", | 684 "pattern": ".", |
707 "action": ["python", "src/build/gyp_chromium"], | 685 "action": ["python", "src/build/gyp_chromium"], |
708 }, | 686 }, |
709 { | 687 { |
710 # Check for landmines (reasons to clobber the build). | 688 # Check for landmines (reasons to clobber the build). |
711 "pattern": ".", | 689 "pattern": ".", |
712 "action": ["python", "src/build/landmines.py"], | 690 "action": ["python", "src/build/landmines.py"], |
713 }, | 691 }, |
714 ] | 692 ] |
OLD | NEW |