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" + "@" + "2889664b9fa88cce175c5c7cdf207d28420a7412",
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "10834e84d250eb31a73496bfdb7923eaa43ead51",
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "3b302fef93f7cc58d9b8168466905237484b2772",
17 Var("git_url") + "/external/googletest.git" + "@" + "be1868139ffe0ccd0e8e3b37292b84c821d9c8ad",
19 Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f24565299976b936d1265cb6a271", # from svn revision 501
21 Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "7ec0c52c7a66cd94c96b8eb37bacd26d152e40e6",
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"],