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://svn.webkit.org/repository/webkit/trunk", | 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
11 "webkit_revision": "136275", | 11 "webkit_revision": "136275", |
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 "chromium_git_old": "https://git.chromium.org", |
14 "swig_revision": "69281", | 15 "swig_revision": "69281", |
15 "nacl_revision": "10345", | 16 "nacl_revision": "10345", |
16 # 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 |
17 # to update other nacl_*_revision's. | 18 # to update other nacl_*_revision's. |
18 "nacl_tools_revision": "10001", # native_client/DEPS: tools_rev | 19 "nacl_tools_revision": "10001", # native_client/DEPS: tools_rev |
19 "gtm_revision": "578", | 20 "gtm_revision": "578", |
20 | 21 |
21 "libjingle_revision": "245", | 22 "libjingle_revision": "245", |
22 "libphonenumber_revision": "456", | 23 "libphonenumber_revision": "456", |
23 "libvpx_revision": "169630", | 24 "libvpx_revision": "169630", |
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 531 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
531 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 532 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
532 | 533 |
533 # For Linux and Chromium OS. | 534 # For Linux and Chromium OS. |
534 "src/third_party/cros_system_api": | 535 "src/third_party/cros_system_api": |
535 Var("chromiumos_git") + "/platform/system_api.git" + | 536 Var("chromiumos_git") + "/platform/system_api.git" + |
536 "@59dafd34a6eb3b6eee63b59f7cc6cd01e4fda770", | 537 "@59dafd34a6eb3b6eee63b59f7cc6cd01e4fda770", |
537 }, | 538 }, |
538 "android": { | 539 "android": { |
539 "src/third_party/freetype": | 540 "src/third_party/freetype": |
540 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + | 541 Var("chromium_git_old") + "/chromium/src/third_party/freetype.git" + |
541 "@96551feab72aac26836e9aaf4fae0962d39d5ab0", | 542 "@96551feab72aac26836e9aaf4fae0962d39d5ab0", |
542 | 543 |
543 "src/third_party/aosp": | 544 "src/third_party/aosp": |
544 "/trunk/deps/third_party/aosp@148330", | 545 "/trunk/deps/third_party/aosp@148330", |
545 | 546 |
546 "src/third_party/android_tools": | 547 "src/third_party/android_tools": |
547 Var("chromium_git") + "/android_tools.git" + | 548 Var("chromium_git_old") + "/android_tools.git" + |
548 "@1cef853f682461dbb27a4992d3d8b5bc1f69232b", | 549 "@1cef853f682461dbb27a4992d3d8b5bc1f69232b", |
549 | 550 |
550 "src/third_party/findbugs": | 551 "src/third_party/findbugs": |
551 "/trunk/deps/third_party/findbugs@163586", | 552 "/trunk/deps/third_party/findbugs@163586", |
552 | 553 |
553 "src/third_party/guava/src": | 554 "src/third_party/guava/src": |
554 Var('chromium_git') + '/external/guava-libraries.git@c523556ab7d0f05afadeb
d20e7768d4c16af8771', | 555 Var("chromium_git_old") + '/external/guava-libraries.git@c523556ab7d0f05af
adebd20e7768d4c16af8771', |
555 | 556 |
556 "src/third_party/jsr-305/src": | 557 "src/third_party/jsr-305/src": |
557 (Var("googlecode_url") % "jsr-305") + "/trunk@51", | 558 (Var("googlecode_url") % "jsr-305") + "/trunk@51", |
558 }, | 559 }, |
559 } | 560 } |
560 | 561 |
561 | 562 |
562 include_rules = [ | 563 include_rules = [ |
563 # Everybody can use some things. | 564 # Everybody can use some things. |
564 "+base", | 565 "+base", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 630 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
630 "pattern": ".", | 631 "pattern": ".", |
631 "action": ["python", "src/build/gyp_chromium"], | 632 "action": ["python", "src/build/gyp_chromium"], |
632 }, | 633 }, |
633 { | 634 { |
634 # Check for landmines (reasons to clobber the build). | 635 # Check for landmines (reasons to clobber the build). |
635 "pattern": ".", | 636 "pattern": ".", |
636 "action": ["python", "src/build/landmines.py"], | 637 "action": ["python", "src/build/landmines.py"], |
637 }, | 638 }, |
638 ] | 639 ] |
OLD | NEW |