| 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_git": "https://chromium.googlesource.com", | 6 "git_url": "https://chromium.googlesource.com", |
| 7 | |
| 8 "chromium_trunk": "https://src.chromium.org/svn/trunk", | |
| 9 | |
| 10 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", | |
| 11 } | 7 } |
| 12 | 8 |
| 13 deps = { | 9 deps = { |
| 14 # Remember to keep the revision in sync with the Makefile. | 10 # Remember to keep the revision in sync with the Makefile. |
| 15 "v8/build/gyp": | 11 "v8/build/gyp": |
| 16 "http://gyp.googlecode.com/svn/trunk@1831", | 12 Var("git_url") + "/external/gyp.git@a3e2a5caf24a1e0a45401e09ad131210bf16b852
", |
| 17 | |
| 18 "v8/third_party/icu": | 13 "v8/third_party/icu": |
| 19 Var("chromium_trunk") + "/deps/third_party/icu52@277999", | 14 Var("git_url") + "/chromium/deps/icu52.git@26d8859357ac0bfb86b939bf21c087b8e
ae22494", |
| 20 | |
| 21 "v8/buildtools": | 15 "v8/buildtools": |
| 22 "https://chromium.googlesource.com/chromium/buildtools.git@" + | 16 Var("git_url") + "/chromium/buildtools.git@fb782d4369d5ae04f17a2fceef7de5a63
e50f07b", |
| 23 Var("buildtools_revision"), | |
| 24 | |
| 25 "v8/testing/gtest": | 17 "v8/testing/gtest": |
| 26 "http://googletest.googlecode.com/svn/trunk@692", | 18 Var("git_url") + "/external/googletest.git@4650552ff637bb44ecf7784060091cbed
3252211", |
| 27 | |
| 28 "v8/testing/gmock": | 19 "v8/testing/gmock": |
| 29 "http://googlemock.googlecode.com/svn/trunk@485", | 20 Var("git_url") + "/external/googlemock.git@896ba0e03f520fb9b6ed582bde2bd0084
7e3c3f2", |
| 30 } | 21 } |
| 31 | 22 |
| 32 deps_os = { | 23 deps_os = { |
| 33 "android": { | 24 "android": { |
| 34 "v8/third_party/android_tools": | 25 "v8/third_party/android_tools": |
| 35 Var("chromium_git") + "/android_tools.git" + "@" + | 26 Var("git_url") + "/android_tools.git@31869996507de16812bb53a3d0aaa15cd6194
c16", |
| 36 "31869996507de16812bb53a3d0aaa15cd6194c16", | |
| 37 }, | 27 }, |
| 38 "win": { | 28 "win": { |
| 39 "v8/third_party/cygwin": | 29 "v8/third_party/cygwin": |
| 40 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", | 30 Var("git_url") + "/chromium/deps/cygwin.git@06a117a90c15174436bfa20ceebbfd
f43b7eb820", |
| 41 | |
| 42 "v8/third_party/python_26": | 31 "v8/third_party/python_26": |
| 43 Var("chromium_trunk") + "/tools/third_party/python_26@89111", | 32 Var("git_url") + "/chromium/deps/python_26.git@67d19f904470effe3122d27101c
c5a8195abd157", |
| 44 } | 33 } |
| 45 } | 34 } |
| 46 | 35 |
| 47 include_rules = [ | 36 include_rules = [ |
| 48 # Everybody can use some things. | 37 # Everybody can use some things. |
| 49 "+include", | 38 "+include", |
| 50 "+unicode", | 39 "+unicode", |
| 51 "+third_party/fdlibm", | 40 "+third_party/fdlibm", |
| 52 ] | 41 ] |
| 53 | 42 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "--bucket", "chromium-clang-format", | 80 "--bucket", "chromium-clang-format", |
| 92 "-s", "v8/buildtools/linux64/clang-format.sha1", | 81 "-s", "v8/buildtools/linux64/clang-format.sha1", |
| 93 ], | 82 ], |
| 94 }, | 83 }, |
| 95 { | 84 { |
| 96 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 85 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 97 "pattern": ".", | 86 "pattern": ".", |
| 98 "action": ["python", "v8/build/gyp_v8"], | 87 "action": ["python", "v8/build/gyp_v8"], |
| 99 }, | 88 }, |
| 100 ] | 89 ] |
| OLD | NEW |