OLD | NEW |
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 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", | 5 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", |
6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", | 6 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", |
7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 7 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
8 "webkit_revision": "115063", | 8 "webkit_revision": "115063", |
9 "chromium_git": "http://git.chromium.org/git", | 9 "chromium_git": "http://git.chromium.org/git", |
10 "swig_revision": "69281", | 10 "swig_revision": "69281", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 } | 64 } |
65 | 65 |
66 deps = { | 66 deps = { |
67 "src/breakpad/src": | 67 "src/breakpad/src": |
68 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@939", | 68 (Var("googlecode_url") % "google-breakpad") + "/trunk/src@939", |
69 | 69 |
70 "src/build/util/support": | 70 "src/build/util/support": |
71 "/trunk/deps/support@20411", | 71 "/trunk/deps/support@20411", |
72 | 72 |
73 "src/googleurl": | 73 "src/googleurl": |
74 (Var("googlecode_url") % "google-url") + "/trunk@172", | 74 (Var("googlecode_url") % "google-url") + "/trunk@173", |
75 | 75 |
76 "src/seccompsandbox": | 76 "src/seccompsandbox": |
77 (Var("googlecode_url") % "seccompsandbox") + "/trunk@178", | 77 (Var("googlecode_url") % "seccompsandbox") + "/trunk@178", |
78 | 78 |
79 "src/sdch/open-vcdiff": | 79 "src/sdch/open-vcdiff": |
80 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 80 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
81 | 81 |
82 "src/testing/gtest": | 82 "src/testing/gtest": |
83 (Var("googlecode_url") % "googletest") + "/trunk@613", | 83 (Var("googlecode_url") % "googletest") + "/trunk@613", |
84 | 84 |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 "pattern": ".", | 532 "pattern": ".", |
533 "action": ["python", "src/build/util/lastchange.py", | 533 "action": ["python", "src/build/util/lastchange.py", |
534 "-o", "src/build/util/LASTCHANGE"], | 534 "-o", "src/build/util/LASTCHANGE"], |
535 }, | 535 }, |
536 { | 536 { |
537 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 537 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
538 "pattern": ".", | 538 "pattern": ".", |
539 "action": ["python", "src/build/gyp_chromium"], | 539 "action": ["python", "src/build/gyp_chromium"], |
540 }, | 540 }, |
541 ] | 541 ] |
OLD | NEW |