| 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" + "@" + "79de4031069f37870f04e8b6bbf42f
     0c7fec37aa", |   11     Var("git_url") + "/external/gyp.git" + "@" + "fdcd8bc10c935eff13b391644b0146
     0593c46861", | 
|   12   "v8/third_party/icu": |   12   "v8/third_party/icu": | 
|   13     Var("git_url") + "/chromium/deps/icu.git" + "@" + "a05f412f70489b77da0ddeb8b
     aa31c68e3eff2c6", |   13     Var("git_url") + "/chromium/deps/icu.git" + "@" + "a05f412f70489b77da0ddeb8b
     aa31c68e3eff2c6", | 
|   14   "v8/buildtools": |   14   "v8/buildtools": | 
|   15     Var("git_url") + "/chromium/buildtools.git" + "@" + "fa660d47fa1a6c649d5c29e
     001348447c55709e6", |   15     Var("git_url") + "/chromium/buildtools.git" + "@" + "fa660d47fa1a6c649d5c29e
     001348447c55709e6", | 
|   16   "v8/testing/gtest": |   16   "v8/testing/gtest": | 
|   17     Var("git_url") + "/external/googletest.git" + "@" + "23574bf2333f834ff665f89
     4c97bef8a5b33a0a9", |   17     Var("git_url") + "/external/googletest.git" + "@" + "23574bf2333f834ff665f89
     4c97bef8a5b33a0a9", | 
|   18   "v8/testing/gmock": |   18   "v8/testing/gmock": | 
|   19     Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997
     6b936d1265cb6a271",  # from svn revision 501 |   19     Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997
     6b936d1265cb6a271",  # from svn revision 501 | 
|   20   "v8/tools/clang": |   20   "v8/tools/clang": | 
|   21     Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "66ba82eea5b4e2309c
     220cc3e0f2d67ebc3fff4c", |   21     Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "4cc9c6714533a07ba0
     2ca01ed04557f055820532", | 
|   22 } |   22 } | 
|   23  |   23  | 
|   24 deps_os = { |   24 deps_os = { | 
|   25   "android": { |   25   "android": { | 
|   26     "v8/third_party/android_tools": |   26     "v8/third_party/android_tools": | 
|   27       Var("git_url") + "/android_tools.git" + "@" + "ed3dde6470c39b196c70f0c2037
     4894d169754ec", |   27       Var("git_url") + "/android_tools.git" + "@" + "ed3dde6470c39b196c70f0c2037
     4894d169754ec", | 
|   28   }, |   28   }, | 
|   29   "win": { |   29   "win": { | 
|   30     "v8/third_party/cygwin": |   30     "v8/third_party/cygwin": | 
|   31       Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
     10ff1007a97c0b7de6df", |   31       Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a
     10ff1007a97c0b7de6df", | 
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  108     'name': 'clang', |  108     'name': 'clang', | 
|  109     'pattern': '.', |  109     'pattern': '.', | 
|  110     'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |  110     'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 
|  111   }, |  111   }, | 
|  112   { |  112   { | 
|  113     # A change to a .gyp, .gypi, or to GYP itself should run the generator. |  113     # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 
|  114     "pattern": ".", |  114     "pattern": ".", | 
|  115     "action": ["python", "v8/build/gyp_v8"], |  115     "action": ["python", "v8/build/gyp_v8"], | 
|  116   }, |  116   }, | 
|  117 ] |  117 ] | 
| OLD | NEW |