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
3 # all paths in here must match this assumption.
6 "git_url": "https://chromium.googlesource.com",
11 Var("git_url") + "/external/gyp.git" + "@" + "01528c7244837168a1c80f06ff60fa5a9793c824",
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "423fc7e1107fb08ccf007c4aeb76dcab8b2747c1",
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "e7111440c07a883b82ffbbe6d26c744dfc6c9673",
16 "v8/tools/swarming_client":
17 Var('git_url') + '/external/swarming.client.git' + '@' + "6e5d2b21f0ac98396cd736097a985346feed1328",
19 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccfb201a9dc90f6d61c6",
21 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c332ce19a33faf75be",
23 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "290301c180118e27755bfced176ff61bd0acb1b8",
28 "v8/third_party/android_tools":
29 Var("git_url") + "/android_tools.git" + "@" + "4238a28593b7e6178c95431f91ca8c24e45fa7eb",
32 "v8/third_party/cygwin":
33 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a10ff1007a97c0b7de6df",
38 # Everybody can use some things.
41 "+third_party/fdlibm",
44 # checkdeps.py shouldn't check for includes in these directories:
45 skip_child_includes = [
52 # This clobbers when necessary (based on get_landmines.py). It must be the
53 # first hook so that other things that get/generate into the output
54 # directory will not subsequently be clobbered.
59 'v8/build/landmines.py',
62 # Pull clang-format binaries using checked-in hashes.
64 "name": "clang_format_win",
66 "action": [ "download_from_google_storage",
70 "--bucket", "chromium-clang-format",
71 "-s", "v8/buildtools/win/clang-format.exe.sha1",
75 "name": "clang_format_mac",
77 "action": [ "download_from_google_storage",
81 "--bucket", "chromium-clang-format",
82 "-s", "v8/buildtools/mac/clang-format.sha1",
86 "name": "clang_format_linux",
88 "action": [ "download_from_google_storage",
92 "--bucket", "chromium-clang-format",
93 "-s", "v8/buildtools/linux64/clang-format.sha1",
96 # Pull binutils for linux, enabled debug fission for faster linking /
97 # debugging when used with clang on Ubuntu Precise.
98 # https://code.google.com/p/chromium/issues/detail?id=352046
101 'pattern': 'v8/third_party/binutils',
104 'v8/third_party/binutils/download.py',
108 # Pull gold plugin if needed or requested via GYP_DEFINES.
109 # Note: This must run before the clang update.
110 'name': 'gold_plugin',
112 'action': ['python', 'v8/build/download_gold_plugin.py'],
115 # Pull clang if needed or requested via GYP_DEFINES.
116 # Note: On Win, this should run after win_toolchain, as it may use it.
119 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
122 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
124 "action": ["python", "v8/build/gyp_v8"],