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", |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "src/third_party/skia/src": | 125 "src/third_party/skia/src": |
126 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), | 126 (Var("googlecode_url") % "skia") + "/trunk/src@" + Var("skia_revision"), |
127 | 127 |
128 "src/third_party/skia/gyp": | 128 "src/third_party/skia/gyp": |
129 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"), | 129 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"), |
130 | 130 |
131 "src/third_party/skia/include": | 131 "src/third_party/skia/include": |
132 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), | 132 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), |
133 | 133 |
134 "src/third_party/ots": | 134 "src/third_party/ots": |
135 (Var("googlecode_url") % "ots") + "/trunk@102", | 135 (Var("googlecode_url") % "ots") + "/trunk@103", |
136 | 136 |
137 "src/tools/page_cycler/acid3": | 137 "src/tools/page_cycler/acid3": |
138 "/trunk/deps/page_cycler/acid3@171600", | 138 "/trunk/deps/page_cycler/acid3@171600", |
139 | 139 |
140 "src/chrome/test/data/perf/canvas_bench": | 140 "src/chrome/test/data/perf/canvas_bench": |
141 "/trunk/deps/canvas_bench@122605", | 141 "/trunk/deps/canvas_bench@122605", |
142 | 142 |
143 "src/chrome/test/data/perf/frame_rate/content": | 143 "src/chrome/test/data/perf/frame_rate/content": |
144 "/trunk/deps/frame_rate/content@93671", | 144 "/trunk/deps/frame_rate/content@93671", |
145 | 145 |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 "pattern": ".", | 617 "pattern": ".", |
618 "action": ["python", "src/build/gyp_chromium"], | 618 "action": ["python", "src/build/gyp_chromium"], |
619 }, | 619 }, |
620 { | 620 { |
621 # Check for landmines (reasons to clobber the build). | 621 # Check for landmines (reasons to clobber the build). |
622 "name": "landmines", | 622 "name": "landmines", |
623 "pattern": ".", | 623 "pattern": ".", |
624 "action": ["python", "src/build/landmines.py"], | 624 "action": ["python", "src/build/landmines.py"], |
625 }, | 625 }, |
626 ] | 626 ] |
OLD | NEW |