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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 "/trunk/deps/third_party/hunspell@184822", | 98 "/trunk/deps/third_party/hunspell@184822", |
99 | 99 |
100 "src/third_party/hunspell_dictionaries": | 100 "src/third_party/hunspell_dictionaries": |
101 "/trunk/deps/third_party/hunspell_dictionaries@193701", | 101 "/trunk/deps/third_party/hunspell_dictionaries@193701", |
102 | 102 |
103 "src/third_party/safe_browsing/testing": | 103 "src/third_party/safe_browsing/testing": |
104 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", | 104 (Var("googlecode_url") % "google-safe-browsing") + "/trunk/testing@112", |
105 | 105 |
106 "src/third_party/cacheinvalidation/src": | 106 "src/third_party/cacheinvalidation/src": |
107 (Var("googlecode_url") % "google-cache-invalidation-api") + | 107 (Var("googlecode_url") % "google-cache-invalidation-api") + |
108 "/trunk/src@296", | 108 "/trunk/src@298", |
109 | 109 |
110 "src/third_party/leveldatabase/src": | 110 "src/third_party/leveldatabase/src": |
111 (Var("googlecode_url") % "leveldb") + "/trunk@72", | 111 (Var("googlecode_url") % "leveldb") + "/trunk@72", |
112 | 112 |
113 "src/third_party/snappy/src": | 113 "src/third_party/snappy/src": |
114 (Var("googlecode_url") % "snappy") + "/trunk@63", | 114 (Var("googlecode_url") % "snappy") + "/trunk@63", |
115 | 115 |
116 "src/tools/grit": | 116 "src/tools/grit": |
117 (Var("googlecode_url") % "grit-i18n") + "/trunk@115", | 117 (Var("googlecode_url") % "grit-i18n") + "/trunk@115", |
118 | 118 |
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 694 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
695 "pattern": ".", | 695 "pattern": ".", |
696 "action": ["python", "src/build/gyp_chromium"], | 696 "action": ["python", "src/build/gyp_chromium"], |
697 }, | 697 }, |
698 { | 698 { |
699 # Check for landmines (reasons to clobber the build). | 699 # Check for landmines (reasons to clobber the build). |
700 "pattern": ".", | 700 "pattern": ".", |
701 "action": ["python", "src/build/landmines.py"], | 701 "action": ["python", "src/build/landmines.py"], |
702 }, | 702 }, |
703 ] | 703 ] |
OLD | NEW |