Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: DEPS

Issue 512183004: Add android tools to v8's deps. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « .DEPS.git ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Note: The buildbots evaluate this file with CWD set to the parent 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 2 # directory and assume that the root of the checkout is in ./v8/, so
3 # all paths in here must match this assumption. 3 # all paths in here must match this assumption.
4 4
5 vars = { 5 vars = {
6 "chromium_git": "https://chromium.googlesource.com",
7
6 "chromium_trunk": "https://src.chromium.org/svn/trunk", 8 "chromium_trunk": "https://src.chromium.org/svn/trunk",
7 9
8 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b", 10 "buildtools_revision": "fb782d4369d5ae04f17a2fceef7de5a63e50f07b",
9 } 11 }
10 12
11 deps = { 13 deps = {
12 # Remember to keep the revision in sync with the Makefile. 14 # Remember to keep the revision in sync with the Makefile.
13 "v8/build/gyp": 15 "v8/build/gyp":
14 "http://gyp.googlecode.com/svn/trunk@1831", 16 "http://gyp.googlecode.com/svn/trunk@1831",
15 17
16 "v8/third_party/icu": 18 "v8/third_party/icu":
17 Var("chromium_trunk") + "/deps/third_party/icu52@277999", 19 Var("chromium_trunk") + "/deps/third_party/icu52@277999",
18 20
19 "v8/buildtools": 21 "v8/buildtools":
20 "https://chromium.googlesource.com/chromium/buildtools.git@" + 22 "https://chromium.googlesource.com/chromium/buildtools.git@" +
21 Var("buildtools_revision"), 23 Var("buildtools_revision"),
22 24
23 "v8/testing/gtest": 25 "v8/testing/gtest":
24 "http://googletest.googlecode.com/svn/trunk@692", 26 "http://googletest.googlecode.com/svn/trunk@692",
25 27
26 "v8/testing/gmock": 28 "v8/testing/gmock":
27 "http://googlemock.googlecode.com/svn/trunk@485", 29 "http://googlemock.googlecode.com/svn/trunk@485",
28 } 30 }
29 31
30 deps_os = { 32 deps_os = {
33 "android": {
34 "v8/third_party/android_tools":
35 Var("chromium_git") + "/android_tools.git" + "@" +
36 "31869996507de16812bb53a3d0aaa15cd6194c16",
37 },
31 "win": { 38 "win": {
32 "v8/third_party/cygwin": 39 "v8/third_party/cygwin":
33 Var("chromium_trunk") + "/deps/third_party/cygwin@66844", 40 Var("chromium_trunk") + "/deps/third_party/cygwin@66844",
34 41
35 "v8/third_party/python_26": 42 "v8/third_party/python_26":
36 Var("chromium_trunk") + "/tools/third_party/python_26@89111", 43 Var("chromium_trunk") + "/tools/third_party/python_26@89111",
37 } 44 }
38 } 45 }
39 46
40 include_rules = [ 47 include_rules = [
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 "--bucket", "chromium-clang-format", 91 "--bucket", "chromium-clang-format",
85 "-s", "v8/buildtools/linux64/clang-format.sha1", 92 "-s", "v8/buildtools/linux64/clang-format.sha1",
86 ], 93 ],
87 }, 94 },
88 { 95 {
89 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 96 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
90 "pattern": ".", 97 "pattern": ".",
91 "action": ["python", "v8/build/gyp_v8"], 98 "action": ["python", "v8/build/gyp_v8"],
92 }, 99 },
93 ] 100 ]
OLDNEW
« no previous file with comments | « .DEPS.git ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698