deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / DEPS
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.
4
5 vars = {
6   "git_url": "https://chromium.googlesource.com",
7 }
8
9 deps = {
10   "v8/build/gyp":
11     Var("git_url") + "/external/gyp.git" + "@" + "d174d75bf69c682cb62af9187879e01513b35e52",
12   "v8/third_party/icu":
13     Var("git_url") + "/chromium/deps/icu.git" + "@" + "7c81740601355556e630da515b74d889ba2f8d08",
14   "v8/buildtools":
15     Var("git_url") + "/chromium/buildtools.git" + "@" + "3b302fef93f7cc58d9b8168466905237484b2772",
16   "v8/testing/gtest":
17     Var("git_url") + "/external/googletest.git" + "@" + "be1868139ffe0ccd0e8e3b37292b84c821d9c8ad",
18   "v8/testing/gmock":
19     Var("git_url") + "/external/googlemock.git" + "@" + "29763965ab52f24565299976b936d1265cb6a271",  # from svn revision 501
20   "v8/tools/clang":
21     Var("git_url") + "/chromium/src/tools/clang.git" + "@" + "ea2f0a2d96ffc6f5a51c034db704ccc1a6543156",
22 }
23
24 deps_os = {
25   "android": {
26     "v8/third_party/android_tools":
27       Var("git_url") + "/android_tools.git" + "@" + "4f723e2a5fa5b7b8a198072ac19b92344be2b271",
28   },
29   "win": {
30     "v8/third_party/cygwin":
31       Var("git_url") + "/chromium/deps/cygwin.git" + "@" + "c89e446b273697fadf3a10ff1007a97c0b7de6df",
32   }
33 }
34
35 include_rules = [
36   # Everybody can use some things.
37   "+include",
38   "+unicode",
39   "+third_party/fdlibm",
40 ]
41
42 # checkdeps.py shouldn't check for includes in these directories:
43 skip_child_includes = [
44   "build",
45   "third_party",
46 ]
47
48 hooks = [
49   {
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.
53     'name': 'landmines',
54     'pattern': '.',
55     'action': [
56         'python',
57         'v8/build/landmines.py',
58     ],
59   },
60   # Pull clang-format binaries using checked-in hashes.
61   {
62     "name": "clang_format_win",
63     "pattern": ".",
64     "action": [ "download_from_google_storage",
65                 "--no_resume",
66                 "--platform=win32",
67                 "--no_auth",
68                 "--bucket", "chromium-clang-format",
69                 "-s", "v8/buildtools/win/clang-format.exe.sha1",
70     ],
71   },
72   {
73     "name": "clang_format_mac",
74     "pattern": ".",
75     "action": [ "download_from_google_storage",
76                 "--no_resume",
77                 "--platform=darwin",
78                 "--no_auth",
79                 "--bucket", "chromium-clang-format",
80                 "-s", "v8/buildtools/mac/clang-format.sha1",
81     ],
82   },
83   {
84     "name": "clang_format_linux",
85     "pattern": ".",
86     "action": [ "download_from_google_storage",
87                 "--no_resume",
88                 "--platform=linux*",
89                 "--no_auth",
90                 "--bucket", "chromium-clang-format",
91                 "-s", "v8/buildtools/linux64/clang-format.sha1",
92     ],
93   },
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
97   {
98     'name': 'binutils',
99     'pattern': 'v8/third_party/binutils',
100     'action': [
101         'python',
102         'v8/third_party/binutils/download.py',
103     ],
104   },
105   {
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.
108     'name': 'clang',
109     'pattern': '.',
110     'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
111   },
112   {
113     # A change to a .gyp, .gypi, or to GYP itself should run the generator.
114     "pattern": ".",
115     "action": ["python", "v8/build/gyp_v8"],
116   },
117 ]