| 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   "git_url": "https://chromium.googlesource.com", |    6   "git_url": "https://chromium.googlesource.com", | 
|    7 } |    7 } | 
|    8  |    8  | 
|    9 deps = { |    9 deps = { | 
|   10   "v8/build/gyp": |   10   "v8/build/gyp": | 
|   11     Var("git_url") + "/external/gyp.git" + "@" + "e1133480da78cd4a23a8cec604d1d6
     d46dab35d6", |   11     Var("git_url") + "/external/gyp.git" + "@" + "e1133480da78cd4a23a8cec604d1d6
     d46dab35d6", | 
|   12   "v8/third_party/icu": |   12   "v8/third_party/icu": | 
|   13     Var("git_url") + "/chromium/deps/icu.git" + "@" + "42c58d4e49f2250039f0e98d4
     3e0b76e8f5ca024", |   13     Var("git_url") + "/chromium/deps/icu.git" + "@" + "42c58d4e49f2250039f0e98d4
     3e0b76e8f5ca024", | 
|   14   "v8/buildtools": |   14   "v8/buildtools": | 
|   15     Var("git_url") + "/chromium/buildtools.git" + "@" + "818123dac34899ec2308409
     36fc15b8b2b5556f9", |   15     Var("git_url") + "/chromium/buildtools.git" + "@" + "818123dac34899ec2308409
     36fc15b8b2b5556f9", | 
 |   16   # TODO(fmeawad): this dependency is not currently used. Added to allow for dev
     elopement of the V8 Tracing system. | 
 |   17   "v8/src/tracing/common": | 
 |   18     Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "d83d44
     b13d07c2fd0a40101a7deef9b93b841732", | 
|   16   "v8/tools/swarming_client": |   19   "v8/tools/swarming_client": | 
|   17     Var('git_url') + '/external/swarming.client.git' + '@' + "05e17879accce360be
     e999cd9ec891d761056bc2", |   20     Var('git_url') + '/external/swarming.client.git' + '@' + "05e17879accce360be
     e999cd9ec891d761056bc2", | 
|   18   "v8/testing/gtest": |   21   "v8/testing/gtest": | 
|   19     Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
     6431cb592dad629028a50b3dd418a408c87", |   22     Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6
     6431cb592dad629028a50b3dd418a408c87", | 
|   20   "v8/testing/gmock": |   23   "v8/testing/gmock": | 
|   21     Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
     332ce19a33faf75be", |   24     Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c
     332ce19a33faf75be", | 
|   22   "v8/test/benchmarks/data": |   25   "v8/test/benchmarks/data": | 
|   23     Var("git_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188267b4
     560491ff9155c5ee13e207ecd65f", |   26     Var("git_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188267b4
     560491ff9155c5ee13e207ecd65f", | 
|   24   "v8/test/mozilla/data": |   27   "v8/test/mozilla/data": | 
|   25     Var("git_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c578a10
     ea707b1a8ab0b88943fe5115ce2b9be", |   28     Var("git_url") + "/v8/deps/third_party/mozilla-tests.git" + "@" + "f6c578a10
     ea707b1a8ab0b88943fe5115ce2b9be", | 
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  164     'name': 'clang', |  167     'name': 'clang', | 
|  165     'pattern': '.', |  168     'pattern': '.', | 
|  166     'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |  169     'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 
|  167   }, |  170   }, | 
|  168   { |  171   { | 
|  169     # A change to a .gyp, .gypi, or to GYP itself should run the generator. |  172     # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 
|  170     "pattern": ".", |  173     "pattern": ".", | 
|  171     "action": ["python", "v8/build/gyp_v8"], |  174     "action": ["python", "v8/build/gyp_v8"], | 
|  172   }, |  175   }, | 
|  173 ] |  176 ] | 
| OLD | NEW |