Chromium Code Reviews| 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 "git_internal_url": "https://chrome-internal.googlesource.com", | |
| 7 } | 8 } |
| 8 | 9 |
| 9 deps = { | 10 deps = { |
| 10 "v8/build/gyp": | 11 "v8/build/gyp": |
| 11 Var("git_url") + "/external/gyp.git" + "@" + "5122240c5e5c4d8da12c543d82b03d 6089eb77c5", | 12 Var("git_url") + "/external/gyp.git" + "@" + "5122240c5e5c4d8da12c543d82b03d 6089eb77c5", |
| 12 "v8/third_party/icu": | 13 "v8/third_party/icu": |
| 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "508e9274baaa5caa8de9cf4c2 6a24e926a15ccf0", | 14 Var("git_url") + "/chromium/deps/icu.git" + "@" + "508e9274baaa5caa8de9cf4c2 6a24e926a15ccf0", |
| 14 "v8/buildtools": | 15 "v8/buildtools": |
| 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "125d157607de4d7c95bf8b0 2dd580aae17962f19", | 16 Var("git_url") + "/chromium/buildtools.git" + "@" + "125d157607de4d7c95bf8b0 2dd580aae17962f19", |
| 16 "v8/testing/gtest": | 17 "v8/testing/gtest": |
| 17 Var("git_url") + "/external/googletest.git" + "@" + "00a70a9667d92a4695d84e4 fa36b64f611f147da", | 18 Var("git_url") + "/external/googletest.git" + "@" + "00a70a9667d92a4695d84e4 fa36b64f611f147da", |
| 18 "v8/testing/gmock": | 19 "v8/testing/gmock": |
| 19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997 6b936d1265cb6a271", # from svn revision 501 | 20 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f2456529997 6b936d1265cb6a271", # from svn revision 501 |
| 20 "v8/tools/clang": | 21 "v8/tools/clang": |
| 21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "33c2e4149926da7262 361323a111605877add859", | 22 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "33c2e4149926da7262 361323a111605877add859", |
| 22 } | 23 } |
| 23 | 24 |
| 24 deps_os = { | 25 deps_os = { |
|
Michael Achenbach
2015/07/21 09:56:59
I'd love to rename this to "conditional_deps", but
Sergiy Byelozyorov
2015/07/21 11:36:37
I'd file a bug with Build-Tools label. I doubt it'
| |
| 25 "android": { | 26 "android": { |
| 26 "v8/third_party/android_tools": | 27 "v8/third_party/android_tools": |
| 27 Var("git_url") + "/android_tools.git" + "@" + "2abd22b08cd757f88362f44b024 84de43e4b9611", | 28 Var("git_url") + "/android_tools.git" + "@" + "2abd22b08cd757f88362f44b024 84de43e4b9611", |
| 28 }, | 29 }, |
| 29 "win": { | 30 "win": { |
| 30 "v8/third_party/cygwin": | 31 "v8/third_party/cygwin": |
| 31 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a 10ff1007a97c0b7de6df", | 32 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a 10ff1007a97c0b7de6df", |
| 32 } | 33 }, |
| 34 "perf-internal": { | |
|
Sergiy Byelozyorov
2015/07/21 11:36:37
How does "os" value get computed? Is it in a confi
| |
| 35 "v8-perf": | |
| 36 Var("git_internal_url") + "/v8/v8-perf.git" + "@" + "e4c8157f3fa11ee4fcccf 779bf7769a374235161", | |
| 37 }, | |
| 33 } | 38 } |
| 34 | 39 |
| 35 include_rules = [ | 40 include_rules = [ |
| 36 # Everybody can use some things. | 41 # Everybody can use some things. |
| 37 "+include", | 42 "+include", |
| 38 "+unicode", | 43 "+unicode", |
| 39 "+third_party/fdlibm", | 44 "+third_party/fdlibm", |
| 40 ] | 45 ] |
| 41 | 46 |
| 42 # checkdeps.py shouldn't check for includes in these directories: | 47 # checkdeps.py shouldn't check for includes in these directories: |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 108 'name': 'clang', | 113 'name': 'clang', |
| 109 'pattern': '.', | 114 'pattern': '.', |
| 110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 115 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
| 111 }, | 116 }, |
| 112 { | 117 { |
| 113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 118 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 114 "pattern": ".", | 119 "pattern": ".", |
| 115 "action": ["python", "v8/build/gyp_v8"], | 120 "action": ["python", "v8/build/gyp_v8"], |
| 116 }, | 121 }, |
| 117 ] | 122 ] |
| OLD | NEW |