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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "ffmpeg_hash": "23f177366e3bce3a628a7d3feedceed4e18dcc04", | 57 "ffmpeg_hash": "23f177366e3bce3a628a7d3feedceed4e18dcc04", |
58 | 58 |
59 "sfntly_revision": "134", | 59 "sfntly_revision": "134", |
60 "skia_revision": "4480", | 60 "skia_revision": "4480", |
61 # Three lines of non-changing comments so that | 61 # Three lines of non-changing comments so that |
62 # the commit queue can handle CLs rolling Skia | 62 # the commit queue can handle CLs rolling Skia |
63 # and V8 without interference from each other. | 63 # and V8 without interference from each other. |
64 "v8_revision": "12029", | 64 "v8_revision": "12029", |
65 "webrtc_revision": "2486", | 65 "webrtc_revision": "2486", |
66 "jsoncpp_revision": "248", | 66 "jsoncpp_revision": "248", |
67 "nss_revision": "144018", | 67 "nss_revision": "145873", |
68 } | 68 } |
69 | 69 |
70 deps = { | 70 deps = { |
71 "src/breakpad/src": | 71 "src/breakpad/src": |
72 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@977", | 72 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@977", |
73 | 73 |
74 "src/googleurl": | 74 "src/googleurl": |
75 (Var("googlecode_url") % "google-url") + "/trunk@175", | 75 (Var("googlecode_url") % "google-url") + "/trunk@175", |
76 | 76 |
77 "src/seccompsandbox": | 77 "src/seccompsandbox": |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@782", | 397 (Var("googlecode_url") % "sawbuck") + "/trunk/syzygy/binaries@782", |
398 | 398 |
399 # Binaries for nacl sdk. | 399 # Binaries for nacl sdk. |
400 "src/third_party/nacl_sdk_binaries": | 400 "src/third_party/nacl_sdk_binaries": |
401 "/trunk/deps/third_party/nacl_sdk_binaries@111576", | 401 "/trunk/deps/third_party/nacl_sdk_binaries@111576", |
402 }, | 402 }, |
403 "ios": { | 403 "ios": { |
404 "src/third_party/GTM": | 404 "src/third_party/GTM": |
405 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 405 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
406 Var("gtm_revision"), | 406 Var("gtm_revision"), |
| 407 |
| 408 "src/third_party/nss": |
| 409 "/trunk/deps/third_party/nss@" + Var("nss_revision"), |
407 }, | 410 }, |
408 "mac": { | 411 "mac": { |
409 "src/chrome/tools/test/reference_build/chrome_mac": | 412 "src/chrome/tools/test/reference_build/chrome_mac": |
410 "/trunk/deps/reference_builds/chrome_mac@137727", | 413 "/trunk/deps/reference_builds/chrome_mac@137727", |
411 | 414 |
412 "src/third_party/GTM": | 415 "src/third_party/GTM": |
413 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + | 416 (Var("googlecode_url") % "google-toolbox-for-mac") + "/trunk@" + |
414 Var("gtm_revision"), | 417 Var("gtm_revision"), |
415 "src/third_party/pdfsqueeze": | 418 "src/third_party/pdfsqueeze": |
416 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", | 419 (Var("googlecode_url") % "pdfsqueeze") + "/trunk@4", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 "pattern": ".", | 559 "pattern": ".", |
557 "action": ["python", "src/build/util/lastchange.py", | 560 "action": ["python", "src/build/util/lastchange.py", |
558 "-o", "src/build/util/LASTCHANGE"], | 561 "-o", "src/build/util/LASTCHANGE"], |
559 }, | 562 }, |
560 { | 563 { |
561 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 564 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
562 "pattern": ".", | 565 "pattern": ".", |
563 "action": ["python", "src/build/gyp_chromium"], | 566 "action": ["python", "src/build/gyp_chromium"], |
564 }, | 567 }, |
565 ] | 568 ] |
OLD | NEW |