| 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_url": "https://chromium.googlesource.com", | 6 "chromium_url": "https://chromium.googlesource.com", |
| 7 } | 7 } |
| 8 | 8 |
| 9 deps = { | 9 deps = { |
| 10 "v8/build": | 10 "v8/build": |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py
.git" + "@" + "cbd968f54f7a95c6556d53ba852292a4c49d11d8", | 42 Var("chromium_url") + "/external/github.com/test262-utils/test262-harness-py
.git" + "@" + "cbd968f54f7a95c6556d53ba852292a4c49d11d8", |
| 43 "v8/tools/clang": | 43 "v8/tools/clang": |
| 44 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "6ba3d23a1b700
d4d5a06908e3bd541f32173c7bb", | 44 Var("chromium_url") + "/chromium/src/tools/clang.git" + "@" + "6ba3d23a1b700
d4d5a06908e3bd541f32173c7bb", |
| 45 } | 45 } |
| 46 | 46 |
| 47 deps_os = { | 47 deps_os = { |
| 48 "android": { | 48 "android": { |
| 49 "v8/third_party/android_tools": | 49 "v8/third_party/android_tools": |
| 50 Var("chromium_url") + "/android_tools.git" + "@" + "3d6ba29a6693bf3db1343f
c213eea47c7d940413", | 50 Var("chromium_url") + "/android_tools.git" + "@" + "3d6ba29a6693bf3db1343f
c213eea47c7d940413", |
| 51 "v8/third_party/catapult": | 51 "v8/third_party/catapult": |
| 52 Var('chromium_url') + "/external/github.com/catapult-project/catapult.git"
+ "@" + "c1cc0281f791753f74dff4bc54ff77d416beb375", | 52 Var('chromium_url') + "/external/github.com/catapult-project/catapult.git"
+ "@" + "07c81af59775d6414d9863e0e2e5652a6849c683", |
| 53 }, | 53 }, |
| 54 "win": { | 54 "win": { |
| 55 "v8/third_party/cygwin": | 55 "v8/third_party/cygwin": |
| 56 Var("chromium_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697f
adf3a10ff1007a97c0b7de6df", | 56 Var("chromium_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697f
adf3a10ff1007a97c0b7de6df", |
| 57 } | 57 } |
| 58 } | 58 } |
| 59 | 59 |
| 60 recursedeps = [ | 60 recursedeps = [ |
| 61 "v8/buildtools", | 61 "v8/buildtools", |
| 62 "v8/third_party/android_tools", | 62 "v8/third_party/android_tools", |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 'name': 'clang', | 291 'name': 'clang', |
| 292 'pattern': '.', | 292 'pattern': '.', |
| 293 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 293 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 294 }, | 294 }, |
| 295 { | 295 { |
| 296 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 296 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 297 "pattern": ".", | 297 "pattern": ".", |
| 298 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], | 298 "action": ["python", "v8/gypfiles/gyp_v8", "--running-as-hook"], |
| 299 }, | 299 }, |
| 300 ] | 300 ] |
| OLD | NEW |