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://svn.code.sf.net/p/%(repo)s/code", | 8 "sourceforge_url": "http://svn.code.sf.net/p/%(repo)s/code", |
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", |
11 "webkit_revision": "158327", | 11 "webkit_revision": "158327", |
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 "skia_git": "https://skia.googlesource.com", | 14 "skia_git": "https://skia.googlesource.com", |
15 "swig_revision": "69281", | 15 "swig_revision": "69281", |
16 "nacl_revision": "12194", | 16 "nacl_revision": "12194", |
17 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS | 17 # After changing nacl_revision, run 'glient sync' and check native_client/DEPS |
18 # to update other nacl_*_revision's. | 18 # to update other nacl_*_revision's. |
19 "nacl_tools_revision": "11437", # native_client/DEPS: tools_rev | 19 "nacl_tools_revision": "11437", # native_client/DEPS: tools_rev |
20 "gtm_revision": "616", | 20 "gtm_revision": "616", |
21 | 21 |
22 "libaddressinput_revision": "137", | |
22 "libphonenumber_revision": "584", | 23 "libphonenumber_revision": "584", |
23 "libvpx_revision": "225010", | 24 "libvpx_revision": "225010", |
24 "lss_revision": "24", | 25 "lss_revision": "24", |
25 | 26 |
26 # These two FFmpeg variables must be updated together. One is used for SVN | 27 # These two FFmpeg variables must be updated together. One is used for SVN |
27 # checkouts and the other for Git checkouts. | 28 # checkouts and the other for Git checkouts. |
28 "ffmpeg_revision": "224426", | 29 "ffmpeg_revision": "224426", |
29 "ffmpeg_hash": "5879ccd47e649bf2dfaec45f02ec5517bd3621d2", | 30 "ffmpeg_hash": "5879ccd47e649bf2dfaec45f02ec5517bd3621d2", |
30 | 31 |
31 "sfntly_revision": "134", | 32 "sfntly_revision": "134", |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
213 "src/third_party/jsoncpp/source/src/lib_json": | 214 "src/third_party/jsoncpp/source/src/lib_json": |
214 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 215 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
215 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), | 216 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), |
216 | 217 |
217 "src/third_party/libyuv": | 218 "src/third_party/libyuv": |
218 (Var("googlecode_url") % "libyuv") + "/trunk@723", | 219 (Var("googlecode_url") % "libyuv") + "/trunk@723", |
219 | 220 |
220 "src/third_party/smhasher/src": | 221 "src/third_party/smhasher/src": |
221 (Var("googlecode_url") % "smhasher") + "/trunk@149", | 222 (Var("googlecode_url") % "smhasher") + "/trunk@149", |
222 | 223 |
224 # There's no internal mirror for libaddressinput, so not using | |
225 # 'googlecode_url' variable here. | |
Evan Stade
2013/09/26 16:48:11
imo link to the bug you filed
please use gerrit instead
2013/09/26 17:42:23
- # There's no internal mirror for libaddressinpu
| |
226 "src/third_party/libaddressinput/testdata": | |
227 "http://libaddressinput.googlecode.com/svn/trunk/cpp@" + | |
228 Var("libaddressinput_revision"), | |
229 "src/third_party/libaddressinput/testdata": | |
230 "http://libaddressinput.googlecode.com/svn/trunk/testdata@" + | |
231 Var("libaddressinput_revision"), | |
232 | |
223 "src/third_party/libphonenumber/src/phonenumbers": | 233 "src/third_party/libphonenumber/src/phonenumbers": |
224 (Var("googlecode_url") % "libphonenumber") + | 234 (Var("googlecode_url") % "libphonenumber") + |
225 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), | 235 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), |
226 "src/third_party/libphonenumber/src/test": | 236 "src/third_party/libphonenumber/src/test": |
227 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + | 237 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + |
228 Var("libphonenumber_revision"), | 238 Var("libphonenumber_revision"), |
229 "src/third_party/libphonenumber/src/resources": | 239 "src/third_party/libphonenumber/src/resources": |
230 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 240 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
231 Var("libphonenumber_revision"), | 241 Var("libphonenumber_revision"), |
232 | 242 |
233 "src/tools/deps2git": | 243 "src/tools/deps2git": |
234 "/trunk/tools/deps2git@214390", | 244 "/trunk/tools/deps2git@214390", |
235 | 245 |
236 "src/third_party/webpagereplay": | 246 "src/third_party/webpagereplay": |
237 (Var("googlecode_url") % "web-page-replay") + "/trunk@521", | 247 (Var("googlecode_url") % "web-page-replay") + "/trunk@521", |
238 | 248 |
239 "src/third_party/pywebsocket/src": | 249 "src/third_party/pywebsocket/src": |
240 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", | 250 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", |
241 | 251 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
334 "/trunk/deps/third_party/class-dump@199203", | 344 "/trunk/deps/third_party/class-dump@199203", |
335 | 345 |
336 # Code that's not needed due to not building everything | 346 # Code that's not needed due to not building everything |
337 "src/build/util/support": None, | 347 "src/build/util/support": None, |
338 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": Non e, | 348 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": Non e, |
339 "src/chrome/test/data/perf/canvas_bench": None, | 349 "src/chrome/test/data/perf/canvas_bench": None, |
340 "src/chrome/test/data/perf/frame_rate/content": None, | 350 "src/chrome/test/data/perf/frame_rate/content": None, |
341 "src/native_client": None, | 351 "src/native_client": None, |
342 "src/native_client/src/third_party/ppapi": None, | 352 "src/native_client/src/third_party/ppapi": None, |
343 "src/third_party/angle_dx11": None, | 353 "src/third_party/angle_dx11": None, |
354 "src/third_party/bidichecker": None, | |
344 "src/third_party/cld_2/src": None, | 355 "src/third_party/cld_2/src": None, |
345 "src/third_party/bidichecker": None, | |
346 "src/third_party/webgl_conformance": None, | |
347 "src/third_party/ffmpeg": None, | 356 "src/third_party/ffmpeg": None, |
348 "src/third_party/hunspell_dictionaries": None, | 357 "src/third_party/hunspell_dictionaries": None, |
349 "src/third_party/hunspell": None, | 358 "src/third_party/hunspell": None, |
350 "src/third_party/leveldatabase/src": None, | 359 "src/third_party/leveldatabase/src": None, |
360 "src/third_party/libaddressinput/cpp": None, | |
361 "src/third_party/libaddressinput/testdata": None, | |
351 "src/third_party/libexif/sources": None, | 362 "src/third_party/libexif/sources": None, |
352 "src/third_party/libjpeg_turbo": None, | 363 "src/third_party/libjpeg_turbo": None, |
353 "src/third_party/libphonenumber/src/phonenumbers": None, | 364 "src/third_party/libphonenumber/src/phonenumbers": None, |
365 "src/third_party/libphonenumber/src/resources": None, | |
354 "src/third_party/libphonenumber/src/test": None, | 366 "src/third_party/libphonenumber/src/test": None, |
355 "src/third_party/libphonenumber/src/resources": None, | |
356 "src/third_party/libsrtp": None, | 367 "src/third_party/libsrtp": None, |
357 "src/third_party/usrsctp/usrsctplib": None, | |
358 "src/third_party/libvpx": None, | 368 "src/third_party/libvpx": None, |
359 "src/third_party/libyuv": None, | 369 "src/third_party/libyuv": None, |
360 "src/third_party/ots": None, | 370 "src/third_party/ots": None, |
361 "src/third_party/pylib": None, | 371 "src/third_party/pylib": None, |
362 "src/third_party/pymox/src": None, | 372 "src/third_party/pymox/src": None, |
363 "src/third_party/safe_browsing/testing": None, | 373 "src/third_party/safe_browsing/testing": None, |
364 "src/third_party/scons-2.0.1": None, | 374 "src/third_party/scons-2.0.1": None, |
365 "src/third_party/sfntly/cpp/src": None, | 375 "src/third_party/sfntly/cpp/src": None, |
366 "src/third_party/smhasher/src": None, | 376 "src/third_party/smhasher/src": None, |
367 "src/third_party/snappy/src": None, | 377 "src/third_party/snappy/src": None, |
368 "src/third_party/swig/Lib": None, | 378 "src/third_party/swig/Lib": None, |
369 "src/third_party/undoview": None, | 379 "src/third_party/undoview": None, |
380 "src/third_party/usrsctp/usrsctplib": None, | |
370 "src/third_party/v8-i18n": None, | 381 "src/third_party/v8-i18n": None, |
371 "src/third_party/webdriver/pylib": None, | 382 "src/third_party/webdriver/pylib": None, |
383 "src/third_party/webgl_conformance": None, | |
372 "src/third_party/webpagereplay": None, | 384 "src/third_party/webpagereplay": None, |
373 "src/third_party/webrtc": None, | 385 "src/third_party/webrtc": None, |
374 "src/third_party/yasm/source/patched-yasm": None, | 386 "src/third_party/yasm/source/patched-yasm": None, |
375 "src/tools/page_cycler/acid3": None, | 387 "src/tools/page_cycler/acid3": None, |
376 "src/v8": None, | 388 "src/v8": None, |
377 }, | 389 }, |
378 "mac": { | 390 "mac": { |
379 "src/chrome/tools/test/reference_build/chrome_mac": | 391 "src/chrome/tools/test/reference_build/chrome_mac": |
380 "/trunk/deps/reference_builds/chrome_mac@221746", | 392 "/trunk/deps/reference_builds/chrome_mac@221746", |
381 | 393 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
490 | 502 |
491 "src/third_party/lss": | 503 "src/third_party/lss": |
492 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + | 504 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + |
493 Var("lss_revision")), | 505 Var("lss_revision")), |
494 | 506 |
495 "src/third_party/openssl": | 507 "src/third_party/openssl": |
496 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), | 508 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), |
497 | 509 |
498 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail le": | 510 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail le": |
499 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo glecode/eyesfree/braille@797", | 511 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo glecode/eyesfree/braille@797", |
512 | |
513 # Android shouldn't use this address validation library. | |
514 "src/third_party/libaddressinput/cpp": None, | |
515 "src/third_party/libaddressinput/testdata": None, | |
500 }, | 516 }, |
501 } | 517 } |
502 | 518 |
503 | 519 |
504 include_rules = [ | 520 include_rules = [ |
505 # Everybody can use some things. | 521 # Everybody can use some things. |
506 "+base", | 522 "+base", |
507 "+build", | 523 "+build", |
508 "+ipc", | 524 "+ipc", |
509 | 525 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
618 "pattern": ".", | 634 "pattern": ".", |
619 "action": ["python", "src/build/gyp_chromium"], | 635 "action": ["python", "src/build/gyp_chromium"], |
620 }, | 636 }, |
621 { | 637 { |
622 # Check for landmines (reasons to clobber the build). | 638 # Check for landmines (reasons to clobber the build). |
623 "name": "landmines", | 639 "name": "landmines", |
624 "pattern": ".", | 640 "pattern": ".", |
625 "action": ["python", "src/build/landmines.py"], | 641 "action": ["python", "src/build/landmines.py"], |
626 }, | 642 }, |
627 ] | 643 ] |
OLD | NEW |