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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
85 "src/testing/gmock": | 85 "src/testing/gmock": |
86 (Var("googlecode_url") % "googlemock") + "/trunk@405", | 86 (Var("googlecode_url") % "googlemock") + "/trunk@405", |
87 | 87 |
88 "src/third_party/angle": | 88 "src/third_party/angle": |
89 (Var("googlecode_url") % "angleproject") + "/trunk@1046", | 89 (Var("googlecode_url") % "angleproject") + "/trunk@1046", |
90 | 90 |
| 91 "src/third_party/trace-viewer": |
| 92 (Var("googlecode_url") % "trace-viewer") + "/trunk@12", |
| 93 |
91 # Note that this is *not* where we check out WebKit -- this just | 94 # Note that this is *not* where we check out WebKit -- this just |
92 # puts some extra files into place for the real WebKit checkout to | 95 # puts some extra files into place for the real WebKit checkout to |
93 # happen. See lines mentioning "webkit_revision" for the real | 96 # happen. See lines mentioning "webkit_revision" for the real |
94 # WebKit checkout. | 97 # WebKit checkout. |
95 "src/third_party/WebKit": | 98 "src/third_party/WebKit": |
96 "/trunk/deps/third_party/WebKit@76115", | 99 "/trunk/deps/third_party/WebKit@76115", |
97 | 100 |
98 "src/third_party/icu": | 101 "src/third_party/icu": |
99 "/trunk/deps/third_party/icu46@140144", | 102 "/trunk/deps/third_party/icu46@140144", |
100 | 103 |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 "pattern": ".", | 547 "pattern": ".", |
545 "action": ["python", "src/build/util/lastchange.py", | 548 "action": ["python", "src/build/util/lastchange.py", |
546 "-o", "src/build/util/LASTCHANGE"], | 549 "-o", "src/build/util/LASTCHANGE"], |
547 }, | 550 }, |
548 { | 551 { |
549 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 552 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
550 "pattern": ".", | 553 "pattern": ".", |
551 "action": ["python", "src/build/gyp_chromium"], | 554 "action": ["python", "src/build/gyp_chromium"], |
552 }, | 555 }, |
553 ] | 556 ] |
OLD | NEW |