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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 "src/sdch/open-vcdiff": | 78 "src/sdch/open-vcdiff": |
79 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 79 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
80 | 80 |
81 "src/testing/gtest": | 81 "src/testing/gtest": |
82 (Var("googlecode_url") % "googletest") + "/trunk@613", | 82 (Var("googlecode_url") % "googletest") + "/trunk@613", |
83 | 83 |
84 "src/testing/gmock": | 84 "src/testing/gmock": |
85 (Var("googlecode_url") % "googlemock") + "/trunk@405", | 85 (Var("googlecode_url") % "googlemock") + "/trunk@405", |
86 | 86 |
87 "src/third_party/angle": | 87 "src/third_party/angle": |
88 (Var("googlecode_url") % "angleproject") + "/trunk@1046", | 88 (Var("googlecode_url") % "angleproject") + "/trunk@1168", |
89 | 89 |
90 "src/third_party/trace-viewer": | 90 "src/third_party/trace-viewer": |
91 (Var("googlecode_url") % "trace-viewer") + "/trunk@57", | 91 (Var("googlecode_url") % "trace-viewer") + "/trunk@57", |
92 | 92 |
93 # Note that this is *not* where we check out WebKit -- this just | 93 # Note that this is *not* where we check out WebKit -- this just |
94 # puts some extra files into place for the real WebKit checkout to | 94 # puts some extra files into place for the real WebKit checkout to |
95 # happen. See lines mentioning "webkit_revision" for the real | 95 # happen. See lines mentioning "webkit_revision" for the real |
96 # WebKit checkout. | 96 # WebKit checkout. |
97 "src/third_party/WebKit": | 97 "src/third_party/WebKit": |
98 "/trunk/deps/third_party/WebKit@76115", | 98 "/trunk/deps/third_party/WebKit@76115", |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 "pattern": ".", | 543 "pattern": ".", |
544 "action": ["python", "src/build/util/lastchange.py", | 544 "action": ["python", "src/build/util/lastchange.py", |
545 "-o", "src/build/util/LASTCHANGE"], | 545 "-o", "src/build/util/LASTCHANGE"], |
546 }, | 546 }, |
547 { | 547 { |
548 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 548 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
549 "pattern": ".", | 549 "pattern": ".", |
550 "action": ["python", "src/build/gyp_chromium"], | 550 "action": ["python", "src/build/gyp_chromium"], |
551 }, | 551 }, |
552 ] | 552 ] |
OLD | NEW |