| OLD | NEW |
| 1 # Note: The buildbots evaluate this file with CWD set to the parent | 1 # Note: The buildbots evaluate this file with CWD set to the parent |
| 2 # directory and assume that the root of the checkout is in ./v8/, so | 2 # directory and assume that the root of the checkout is in ./v8/, so |
| 3 # all paths in here must match this assumption. | 3 # all paths in here must match this assumption. |
| 4 | 4 |
| 5 vars = { | 5 vars = { |
| 6 "chromium_trunk": "https://src.chromium.org/svn/trunk", | 6 "chromium_trunk": "https://src.chromium.org/svn/trunk", |
| 7 | 7 |
| 8 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", | 8 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", |
| 9 } | 9 } |
| 10 | 10 |
| 11 deps = { | 11 deps = { |
| 12 # Remember to keep the revision in sync with the Makefile. | 12 # Remember to keep the revision in sync with the Makefile. |
| 13 "v8/build/gyp": | 13 "v8/build/gyp": |
| 14 "http://gyp.googlecode.com/svn/trunk@1831", | 14 "http://gyp.googlecode.com/svn/trunk@1831", |
| 15 | 15 |
| 16 "v8/third_party/icu": | 16 "v8/third_party/icu": |
| 17 Var("chromium_trunk") + "/deps/third_party/icu52@277999", | 17 Var("chromium_trunk") + "/deps/third_party/icu52@277999", |
| 18 | 18 |
| 19 "v8/buildtools": | 19 "v8/buildtools": |
| 20 "https://chromium.googlesource.com/chromium/buildtools.git@" + | 20 "https://chromium.googlesource.com/chromium/buildtools.git@" + |
| 21 Var("buildtools_revision"), | 21 Var("buildtools_revision"), |
| 22 |
| 23 "v8/testing/gtest": |
| 24 "http://googletest.googlecode.com/svn/trunk@643", |
| 25 |
| 26 "v8/testing/gmock": |
| 27 "http://googlemock.googlecode.com/svn/trunk@410", |
| 22 } | 28 } |
| 23 | 29 |
| 24 deps_os = { | 30 deps_os = { |
| 25 "win": { | 31 "win": { |
| 26 "v8/third_party/cygwin": | 32 "v8/third_party/cygwin": |
| 27 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", | 33 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", |
| 28 | 34 |
| 29 "v8/third_party/python_26": | 35 "v8/third_party/python_26": |
| 30 Var("chromium_trunk") + "/tools/third_party/python_26@89111", | 36 Var("chromium_trunk") + "/tools/third_party/python_26@89111", |
| 31 } | 37 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "--bucket", "chromium-clang-format", | 83 "--bucket", "chromium-clang-format", |
| 78 "-s", "v8/buildtools/linux64/clang-format.sha1", | 84 "-s", "v8/buildtools/linux64/clang-format.sha1", |
| 79 ], | 85 ], |
| 80 }, | 86 }, |
| 81 { | 87 { |
| 82 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 88 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 83 "pattern": ".", | 89 "pattern": ".", |
| 84 "action": ["python", "v8/build/gyp_v8"], | 90 "action": ["python", "v8/build/gyp_v8"], |
| 85 }, | 91 }, |
| 86 ] | 92 ] |
| OLD | NEW |