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" + "@" + "5122240c5e5c4d8da12c543d82b03d6089eb77c5",
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "c81a1a3989c3b66fa323e9a6ee7418d7c08297af",
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "ecc8e253abac3b6186a97573871a084f4c0ca3ae",
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" + "@" + "73ec8804ed395b0886d6edf82a9f33583f4a7902",
26 "v8/third_party/android_tools":
27 Var("git_url") + "/android_tools.git" + "@" + "21f4bcbd6cd927e4b4227cfde7d5f13486be1236",
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"],