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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "/trunk/deps/third_party/hunspell@197309", | 85 "/trunk/deps/third_party/hunspell@197309", |
86 | 86 |
87 "src/third_party/hunspell_dictionaries": | 87 "src/third_party/hunspell_dictionaries": |
88 "/trunk/deps/third_party/hunspell_dictionaries@193701", | 88 "/trunk/deps/third_party/hunspell_dictionaries@193701", |
89 | 89 |
90 "src/third_party/safe_browsing/testing": | 90 "src/third_party/safe_browsing/testing": |
91 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", | 91 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", |
92 | 92 |
93 "src/third_party/cacheinvalidation/src": | 93 "src/third_party/cacheinvalidation/src": |
94 (Var("googlecode_url") % "google-cache-invalidation-api") + | 94 (Var("googlecode_url") % "google-cache-invalidation-api") + |
95 "/trunk/src@303", | 95 "/trunk/src@307", |
96 | 96 |
97 "src/third_party/leveldatabase/src": | 97 "src/third_party/leveldatabase/src": |
98 (Var("googlecode_url") % "leveldb") + "/trunk@73", | 98 (Var("googlecode_url") % "leveldb") + "/trunk@73", |
99 | 99 |
100 "src/third_party/snappy/src": | 100 "src/third_party/snappy/src": |
101 (Var("googlecode_url") % "snappy") + "/trunk@74", | 101 (Var("googlecode_url") % "snappy") + "/trunk@74", |
102 | 102 |
103 "src/tools/grit": | 103 "src/tools/grit": |
104 (Var("googlecode_url") % "grit-i18n") + "/trunk@121", | 104 (Var("googlecode_url") % "grit-i18n") + "/trunk@121", |
105 | 105 |
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 673 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
674 "pattern": ".", | 674 "pattern": ".", |
675 "action": ["python", "src/build/gyp_chromium"], | 675 "action": ["python", "src/build/gyp_chromium"], |
676 }, | 676 }, |
677 { | 677 { |
678 # Check for landmines (reasons to clobber the build). | 678 # Check for landmines (reasons to clobber the build). |
679 "pattern": ".", | 679 "pattern": ".", |
680 "action": ["python", "src/build/landmines.py"], | 680 "action": ["python", "src/build/landmines.py"], |
681 }, | 681 }, |
682 ] | 682 ] |
OLD | NEW |