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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "src/testing/gtest": | 83 "src/testing/gtest": |
84 (Var("googlecode_url") % "googletest") + "/trunk@617", | 84 (Var("googlecode_url") % "googletest") + "/trunk@617", |
85 | 85 |
86 "src/testing/gmock": | 86 "src/testing/gmock": |
87 (Var("googlecode_url") % "googlemock") + "/trunk@405", | 87 (Var("googlecode_url") % "googlemock") + "/trunk@405", |
88 | 88 |
89 "src/third_party/angle": | 89 "src/third_party/angle": |
90 (Var("googlecode_url") % "angleproject") + "/trunk@1243", | 90 (Var("googlecode_url") % "angleproject") + "/trunk@1243", |
91 | 91 |
92 "src/third_party/trace-viewer": | 92 "src/third_party/trace-viewer": |
93 (Var("googlecode_url") % "trace-viewer") + "/trunk@89", | 93 (Var("googlecode_url") % "trace-viewer") + "/trunk@99", |
94 | 94 |
95 # Note that this is *not* where we check out WebKit -- this just | 95 # Note that this is *not* where we check out WebKit -- this just |
96 # puts some extra files into place for the real WebKit checkout to | 96 # puts some extra files into place for the real WebKit checkout to |
97 # happen. See lines mentioning "webkit_revision" for the real | 97 # happen. See lines mentioning "webkit_revision" for the real |
98 # WebKit checkout. | 98 # WebKit checkout. |
99 "src/third_party/WebKit": | 99 "src/third_party/WebKit": |
100 "/trunk/deps/third_party/WebKit@76115", | 100 "/trunk/deps/third_party/WebKit@76115", |
101 | 101 |
102 "src/third_party/icu": | 102 "src/third_party/icu": |
103 "/trunk/deps/third_party/icu46@146527", | 103 "/trunk/deps/third_party/icu46@146527", |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 "pattern": ".", | 564 "pattern": ".", |
565 "action": ["python", "src/build/util/lastchange.py", | 565 "action": ["python", "src/build/util/lastchange.py", |
566 "-o", "src/build/util/LASTCHANGE"], | 566 "-o", "src/build/util/LASTCHANGE"], |
567 }, | 567 }, |
568 { | 568 { |
569 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 569 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
570 "pattern": ".", | 570 "pattern": ".", |
571 "action": ["python", "src/build/gyp_chromium"], | 571 "action": ["python", "src/build/gyp_chromium"], |
572 }, | 572 }, |
573 ] | 573 ] |
OLD | NEW |