Chromium Code Reviews| 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": "160353", | 11 "webkit_revision": "160353", |
| 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": "230490", | 15 "swig_revision": "230490", |
| 16 "nacl_revision": "12284", | 16 "nacl_revision": "12284", |
| 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": "12279", # native_client/DEPS: tools_rev | 19 "nacl_tools_revision": "12279", # native_client/DEPS: tools_rev |
| 20 "gtm_revision": "616", | 20 "gtm_revision": "616", |
| 21 | 21 |
| 22 "libaddressinput_revision": "146", | |
| 22 "libphonenumber_revision": "621", | 23 "libphonenumber_revision": "621", |
| 23 "libvpx_revision": "228256", | 24 "libvpx_revision": "228256", |
| 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": "229188", | 29 "ffmpeg_revision": "229188", |
| 29 "ffmpeg_hash": "3cd1dee6583cb4e019c518945083d64f1b990300", | 30 "ffmpeg_hash": "3cd1dee6583cb4e019c518945083d64f1b990300", |
| 30 | 31 |
| 31 "sfntly_revision": "228", | 32 "sfntly_revision": "228", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 211 "src/third_party/jsoncpp/source/src/lib_json": | 212 "src/third_party/jsoncpp/source/src/lib_json": |
| 212 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + | 213 (Var("sourceforge_url") % {"repo": "jsoncpp"}) + |
| 213 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), | 214 "/trunk/jsoncpp/src/lib_json@" + Var("jsoncpp_revision"), |
| 214 | 215 |
| 215 "src/third_party/libyuv": | 216 "src/third_party/libyuv": |
| 216 (Var("googlecode_url") % "libyuv") + "/trunk@723", | 217 (Var("googlecode_url") % "libyuv") + "/trunk@723", |
| 217 | 218 |
| 218 "src/third_party/smhasher/src": | 219 "src/third_party/smhasher/src": |
| 219 (Var("googlecode_url") % "smhasher") + "/trunk@149", | 220 (Var("googlecode_url") % "smhasher") + "/trunk@149", |
| 220 | 221 |
| 222 "src/third_party/libaddressinput/cpp": | |
|
jln (very slow on Chromium)
2013/10/25 00:51:36
Please add a comment "Get security approval when i
please use gerrit instead
2013/11/08 21:44:50
Added the comment.
| |
| 223 (Var("googlecode_url") % "libaddressinput") + "/trunk/cpp@" + | |
| 224 Var("libaddressinput_revision"), | |
| 225 "src/third_party/libaddressinput/testdata": | |
| 226 (Var("googlecode_url") % "libaddressinput") + "/trunk/testdata@" + | |
| 227 Var("libaddressinput_revision"), | |
| 228 | |
| 221 "src/third_party/libphonenumber/src/phonenumbers": | 229 "src/third_party/libphonenumber/src/phonenumbers": |
| 222 (Var("googlecode_url") % "libphonenumber") + | 230 (Var("googlecode_url") % "libphonenumber") + |
| 223 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), | 231 "/trunk/cpp/src/phonenumbers@" + Var("libphonenumber_revision"), |
| 224 "src/third_party/libphonenumber/src/test": | 232 "src/third_party/libphonenumber/src/test": |
| 225 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + | 233 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp/test@" + |
| 226 Var("libphonenumber_revision"), | 234 Var("libphonenumber_revision"), |
| 227 "src/third_party/libphonenumber/src/resources": | 235 "src/third_party/libphonenumber/src/resources": |
| 228 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + | 236 (Var("googlecode_url") % "libphonenumber") + "/trunk/resources@" + |
| 229 Var("libphonenumber_revision"), | 237 Var("libphonenumber_revision"), |
| 230 | 238 |
| 231 "src/tools/deps2git": | 239 "src/tools/deps2git": |
| 232 "/trunk/tools/deps2git@214390", | 240 "/trunk/tools/deps2git@214390", |
| 233 | 241 |
| 234 "src/third_party/webpagereplay": | 242 "src/third_party/webpagereplay": |
| 235 (Var("googlecode_url") % "web-page-replay") + "/trunk@522", | 243 (Var("googlecode_url") % "web-page-replay") + "/trunk@522", |
| 236 | 244 |
| 237 "src/third_party/pywebsocket/src": | 245 "src/third_party/pywebsocket/src": |
| 238 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", | 246 (Var("googlecode_url") % "pywebsocket") + "/trunk/src@662", |
| 239 | 247 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 331 # Code that's not needed due to not building everything | 339 # Code that's not needed due to not building everything |
| 332 "src/build/util/support": None, | 340 "src/build/util/support": None, |
| 333 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": Non e, | 341 "src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin": Non e, |
| 334 "src/chrome/test/data/perf/canvas_bench": None, | 342 "src/chrome/test/data/perf/canvas_bench": None, |
| 335 "src/chrome/test/data/perf/frame_rate/content": None, | 343 "src/chrome/test/data/perf/frame_rate/content": None, |
| 336 "src/chrome/test/data/perf/third_party/octane": None, | 344 "src/chrome/test/data/perf/third_party/octane": None, |
| 337 "src/media/cdm/ppapi/api": None, | 345 "src/media/cdm/ppapi/api": None, |
| 338 "src/native_client": None, | 346 "src/native_client": None, |
| 339 "src/native_client/src/third_party/ppapi": None, | 347 "src/native_client/src/third_party/ppapi": None, |
| 340 "src/third_party/angle_dx11": None, | 348 "src/third_party/angle_dx11": None, |
| 349 "src/third_party/bidichecker": None, | |
| 341 "src/third_party/cld_2/src": None, | 350 "src/third_party/cld_2/src": None, |
| 342 "src/third_party/bidichecker": None, | |
| 343 "src/third_party/webgl_conformance": None, | |
| 344 "src/third_party/ffmpeg": None, | 351 "src/third_party/ffmpeg": None, |
| 345 "src/third_party/hunspell_dictionaries": None, | 352 "src/third_party/hunspell_dictionaries": None, |
| 346 "src/third_party/hunspell": None, | 353 "src/third_party/hunspell": None, |
| 354 "src/third_party/libaddressinput/cpp": None, | |
| 355 "src/third_party/libaddressinput/testdata": None, | |
| 347 "src/third_party/libexif/sources": None, | 356 "src/third_party/libexif/sources": None, |
| 348 "src/third_party/libjpeg_turbo": None, | 357 "src/third_party/libjpeg_turbo": None, |
| 349 "src/third_party/libsrtp": None, | 358 "src/third_party/libsrtp": None, |
| 350 "src/third_party/usrsctp/usrsctplib": None, | |
| 351 "src/third_party/libvpx": None, | 359 "src/third_party/libvpx": None, |
| 352 "src/third_party/libyuv": None, | 360 "src/third_party/libyuv": None, |
| 353 "src/third_party/mesa/src": None, | 361 "src/third_party/mesa/src": None, |
| 354 "src/third_party/opus/src": None, | 362 "src/third_party/opus/src": None, |
| 355 "src/third_party/openmax_dl": None, | 363 "src/third_party/openmax_dl": None, |
| 356 "src/third_party/ots": None, | 364 "src/third_party/ots": None, |
| 357 "src/third_party/pymox/src": None, | 365 "src/third_party/pymox/src": None, |
| 358 "src/third_party/safe_browsing/testing": None, | 366 "src/third_party/safe_browsing/testing": None, |
| 359 "src/third_party/scons-2.0.1": None, | 367 "src/third_party/scons-2.0.1": None, |
| 360 "src/third_party/sfntly/cpp/src": None, | 368 "src/third_party/sfntly/cpp/src": None, |
| 361 "src/third_party/smhasher/src": None, | 369 "src/third_party/smhasher/src": None, |
| 362 "src/third_party/swig/Lib": None, | 370 "src/third_party/swig/Lib": None, |
| 363 "src/third_party/undoview": None, | 371 "src/third_party/undoview": None, |
| 372 "src/third_party/usrsctp/usrsctplib": None, | |
| 364 "src/third_party/v8-i18n": None, | 373 "src/third_party/v8-i18n": None, |
| 365 "src/third_party/webdriver/pylib": None, | 374 "src/third_party/webdriver/pylib": None, |
| 375 "src/third_party/webgl_conformance": None, | |
| 366 "src/third_party/webpagereplay": None, | 376 "src/third_party/webpagereplay": None, |
| 367 "src/third_party/webrtc": None, | 377 "src/third_party/webrtc": None, |
| 368 "src/third_party/yasm/source/patched-yasm": None, | 378 "src/third_party/yasm/source/patched-yasm": None, |
| 369 "src/tools/page_cycler/acid3": None, | 379 "src/tools/page_cycler/acid3": None, |
| 370 "src/v8": None, | 380 "src/v8": None, |
| 371 }, | 381 }, |
| 372 "mac": { | 382 "mac": { |
| 373 "src/chrome/tools/test/reference_build/chrome_mac": | 383 "src/chrome/tools/test/reference_build/chrome_mac": |
| 374 "/trunk/deps/reference_builds/chrome_mac@221746", | 384 "/trunk/deps/reference_builds/chrome_mac@221746", |
| 375 | 385 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 484 | 494 |
| 485 "src/third_party/lss": | 495 "src/third_party/lss": |
| 486 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + | 496 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + |
| 487 Var("lss_revision")), | 497 Var("lss_revision")), |
| 488 | 498 |
| 489 "src/third_party/openssl": | 499 "src/third_party/openssl": |
| 490 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), | 500 "/trunk/deps/third_party/openssl@" + Var("openssl_revision"), |
| 491 | 501 |
| 492 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail le": | 502 "src/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/brail le": |
| 493 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo glecode/eyesfree/braille@797", | 503 (Var("googlecode_url") % "eyes-free") + "/trunk/braille/client/src/com/goo glecode/eyesfree/braille@797", |
| 504 | |
| 505 # Android shouldn't use this address validation library. | |
| 506 "src/third_party/libaddressinput/cpp": None, | |
| 507 "src/third_party/libaddressinput/testdata": None, | |
| 494 }, | 508 }, |
| 495 } | 509 } |
| 496 | 510 |
| 497 | 511 |
| 498 include_rules = [ | 512 include_rules = [ |
| 499 # Everybody can use some things. | 513 # Everybody can use some things. |
| 500 "+base", | 514 "+base", |
| 501 "+build", | 515 "+build", |
| 502 "+ipc", | 516 "+ipc", |
| 503 | 517 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 612 "pattern": ".", | 626 "pattern": ".", |
| 613 "action": ["python", "src/build/gyp_chromium"], | 627 "action": ["python", "src/build/gyp_chromium"], |
| 614 }, | 628 }, |
| 615 { | 629 { |
| 616 # Check for landmines (reasons to clobber the build). | 630 # Check for landmines (reasons to clobber the build). |
| 617 "name": "landmines", | 631 "name": "landmines", |
| 618 "pattern": ".", | 632 "pattern": ".", |
| 619 "action": ["python", "src/build/landmines.py"], | 633 "action": ["python", "src/build/landmines.py"], |
| 620 }, | 634 }, |
| 621 ] | 635 ] |
| OLD | NEW |