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" + "@" + "6ee91ad8659871916f9aa840d42e1513befdf638",
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "6b3ce817f8e828c3b7a577d2395f0882eb56ef18",
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "565d04e8741429fb1b4f26d102f2c6c3b849edeb",
17 Var("git_url") + "/external/googletest.git" + "@" + "9855a87157778d39b95eccfb201a9dc90f6d61c6",
19 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c332ce19a33faf75be",
21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "5439585778385813bc7711f3d6b7035b9eb78572",
26 "v8/third_party/android_tools":
27 Var("git_url") + "/android_tools.git" + "@" + "4238a28593b7e6178c95431f91ca8c24e45fa7eb",
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"],