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", |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + | 118 Var("nacl_trunk") + "/src/native_client/tests/prebuilt@" + |
119 Var("nacl_revision"), | 119 Var("nacl_revision"), |
120 | 120 |
121 "src/third_party/sfntly/cpp/src": | 121 "src/third_party/sfntly/cpp/src": |
122 (Var("googlecode_url") % "sfntly") + "/trunk/cpp/src@" + | 122 (Var("googlecode_url") % "sfntly") + "/trunk/cpp/src@" + |
123 Var("sfntly_revision"), | 123 Var("sfntly_revision"), |
124 | 124 |
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": |
| 129 (Var("googlecode_url") % "skia") + "/trunk/gyp@" + Var("skia_revision"), |
| 130 |
128 "src/third_party/skia/include": | 131 "src/third_party/skia/include": |
129 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), | 132 (Var("googlecode_url") % "skia") + "/trunk/include@" + Var("skia_revision"), |
130 | 133 |
131 "src/third_party/WebKit/LayoutTests": | 134 "src/third_party/WebKit/LayoutTests": |
132 Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"), | 135 Var("webkit_trunk") + "/LayoutTests@" + Var("webkit_revision"), |
133 | 136 |
134 "src/third_party/WebKit/Source": | 137 "src/third_party/WebKit/Source": |
135 Var("webkit_trunk") + "/Source@" + Var("webkit_revision"), | 138 Var("webkit_trunk") + "/Source@" + Var("webkit_revision"), |
136 | 139 |
137 "src/third_party/WebKit/Tools/DumpRenderTree": | 140 "src/third_party/WebKit/Tools/DumpRenderTree": |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 "pattern": ".", | 594 "pattern": ".", |
592 "action": ["python", "src/build/util/lastchange.py", | 595 "action": ["python", "src/build/util/lastchange.py", |
593 "-o", "src/build/util/LASTCHANGE"], | 596 "-o", "src/build/util/LASTCHANGE"], |
594 }, | 597 }, |
595 { | 598 { |
596 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 599 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
597 "pattern": ".", | 600 "pattern": ".", |
598 "action": ["python", "src/build/gyp_chromium"], | 601 "action": ["python", "src/build/gyp_chromium"], |
599 }, | 602 }, |
600 ] | 603 ] |
OLD | NEW |