Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: DEPS

Issue 6803005: Autofill phone number enhancements and integration of Phone Number Util Library: part 1 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/all.gyp » ('j') | third_party/libphonenumber/README.chromium » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 vars = { 1 vars = {
2 # Use this googlecode_url variable only if there is an internal mirror for it. 2 # Use this googlecode_url variable only if there is an internal mirror for it.
3 # If you do not know, use the full path while defining your new deps entry. 3 # If you do not know, use the full path while defining your new deps entry.
4 "googlecode_url": "http://%s.googlecode.com/svn", 4 "googlecode_url": "http://%s.googlecode.com/svn",
5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 5 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
6 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 6 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
7 "webkit_revision": "84350", 7 "webkit_revision": "84350",
8 "chromium_git": "http://git.chromium.org/git", 8 "chromium_git": "http://git.chromium.org/git",
9 "swig_revision": "69281", 9 "swig_revision": "69281",
10 "nacl_revision": "4920", 10 "nacl_revision": "4920",
11 "nacl_tools_revision": "4802", 11 "nacl_tools_revision": "4802",
12 "libjingle_revision": "55", 12 "libjingle_revision": "55",
13 "libvpx_revision": "81610", 13 "libvpx_revision": "81610",
14 "ffmpeg_revision": "82126", 14 "ffmpeg_revision": "82126",
15 "skia_revision": "1144", 15 "skia_revision": "1144",
16 "v8_revision": "7673", 16 "v8_revision": "7673",
17 "libphonenumber_revision": "r156",
Mark Mentovai 2011/04/27 16:53:01 Get rid of the r. I know it works with the r, but
GeorgeY 2011/04/28 07:21:18 Done. But for now added patched library completely
17 } 18 }
18 19
19 deps = { 20 deps = {
20 "src/breakpad/src": 21 "src/breakpad/src":
21 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@786", 22 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@786",
22 23
23 "src/build/util/support": 24 "src/build/util/support":
24 "/trunk/deps/support@20411", 25 "/trunk/deps/support@20411",
25 26
26 "src/googleurl": 27 "src/googleurl":
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 218
218 "src/third_party/flac": 219 "src/third_party/flac":
219 "/trunk/deps/third_party/flac@75901", 220 "/trunk/deps/third_party/flac@75901",
220 221
221 # Needed to support nacl browser test jig. 222 # Needed to support nacl browser test jig.
222 "src/third_party/pylib": 223 "src/third_party/pylib":
223 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"), 224 Var("nacl_trunk") + "/src/third_party/pylib@" + Var("nacl_tools_revision"),
224 "src/third_party/scons-2.0.1": 225 "src/third_party/scons-2.0.1":
225 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" + 226 Var("nacl_trunk") + "/src/third_party/scons-2.0.1@" +
226 Var("nacl_tools_revision"), 227 Var("nacl_tools_revision"),
228
229 "src/third_party/libphonenumber/cpp":
230 (Var("googlecode_url") % "libphonenumber") + "/trunk/cpp@" +
231 Var("libphonenumber_revision"),
227 } 232 }
228 233
229 234
230 deps_os = { 235 deps_os = {
231 "win": { 236 "win": {
232 "src/chrome/tools/test/reference_build/chrome": 237 "src/chrome/tools/test/reference_build/chrome":
233 "/trunk/deps/reference_builds/chrome@70122", 238 "/trunk/deps/reference_builds/chrome@70122",
234 239
235 "src/third_party/cygwin": 240 "src/third_party/cygwin":
236 "/trunk/deps/third_party/cygwin@66844", 241 "/trunk/deps/third_party/cygwin@66844",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 ] 355 ]
351 356
352 357
353 hooks = [ 358 hooks = [
354 { 359 {
355 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 360 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
356 "pattern": ".", 361 "pattern": ".",
357 "action": ["python", "src/build/gyp_chromium"], 362 "action": ["python", "src/build/gyp_chromium"],
358 }, 363 },
359 ] 364 ]
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | third_party/libphonenumber/README.chromium » ('J')

Powered by Google App Engine
This is Rietveld 408576698