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" + "@" + "29e94a3285ee899d14d5e56a6001682620d3778f",
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "f1ad7f9ba957571dc692ea3e187612c685615e19",
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "fa660d47fa1a6c649d5c29e001348447c55709e6",
17 Var("git_url") + "/external/googletest.git" + "@" + "23574bf2333f834ff665f894c97bef8a5b33a0a9",
19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f24565299976b936d1265cb6a271", # from svn revision 501
21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "12a1473d6de70775c77726b62aed18bfd56818c1",
26 "v8/third_party/android_tools":
27 Var("git_url") + "/android_tools.git" + "@" + "4f723e2a5fa5b7b8a198072ac19b92344be2b271",
30 "v8/third_party/cygwin":
31 Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a10ff1007a97c0b7de6df",
36 # Everybody can use some things.
39 "+third_party/fdlibm",
42 # checkdeps.py shouldn't check for includes in these directories:
43 skip_child_includes = [
50 # This clobbers when necessary (based on get_landmines.py). It must be the
51 # first hook so that other things that get/generate into the output
52 # directory will not subsequently be clobbered.
57 'v8/build/landmines.py',
60 # Pull clang-format binaries using checked-in hashes.
62 "name": "clang_format_win",
64 "action": [ "download_from_google_storage",
68 "--bucket", "chromium-clang-format",
69 "-s", "v8/buildtools/win/clang-format.exe.sha1",
73 "name": "clang_format_mac",
75 "action": [ "download_from_google_storage",
79 "--bucket", "chromium-clang-format",
80 "-s", "v8/buildtools/mac/clang-format.sha1",
84 "name": "clang_format_linux",
86 "action": [ "download_from_google_storage",
90 "--bucket", "chromium-clang-format",
91 "-s", "v8/buildtools/linux64/clang-format.sha1",
94 # Pull binutils for linux, enabled debug fission for faster linking /
95 # debugging when used with clang on Ubuntu Precise.
96 # https://code.google.com/p/chromium/issues/detail?id=352046
99 'pattern': 'v8/third_party/binutils',
102 'v8/third_party/binutils/download.py',
106 # Pull clang if needed or requested via GYP_DEFINES.
107 # Note: On Win, this should run after win_toolchain, as it may use it.
110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
113 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
115 "action": ["python", "v8/build/gyp_v8"],