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

Side by Side Diff: DEPS

Issue 988893003: Implement tracing interface for v8 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update BUILD.gn to include trace_event_common.h Created 5 years 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
« no previous file with comments | « BUILD.gn ('k') | build/standalone.gypi » ('j') | 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 "git_url": "https://chromium.googlesource.com", 6 "git_url": "https://chromium.googlesource.com",
7 } 7 }
8 8
9 deps = { 9 deps = {
10 "v8/build/gyp": 10 "v8/build/gyp":
11 Var("git_url") + "/external/gyp.git" + "@" + "b85ad3e578da830377dbc1843aa4fb c5af17a192", 11 Var("git_url") + "/external/gyp.git" + "@" + "b85ad3e578da830377dbc1843aa4fb c5af17a192",
12 "v8/third_party/icu": 12 "v8/third_party/icu":
13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "8d342a405be5ae8aacb1e16f0 bc31c3a4fbf26a2", 13 Var("git_url") + "/chromium/deps/icu.git" + "@" + "8d342a405be5ae8aacb1e16f0 bc31c3a4fbf26a2",
14 "v8/buildtools": 14 "v8/buildtools":
15 Var("git_url") + "/chromium/buildtools.git" + "@" + "68e3c238a5ab347436762cb 929316aa55ca72563", 15 Var("git_url") + "/chromium/buildtools.git" + "@" + "68e3c238a5ab347436762cb 929316aa55ca72563",
16 # TODO(fmeawad): this dependency is not currently used. Added to allow for dev elopement of the V8 Tracing system.
17 "v8/base/trace_event/common": 16 "v8/base/trace_event/common":
18 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "d83d44 b13d07c2fd0a40101a7deef9b93b841732", 17 Var("git_url") + "/chromium/src/base/trace_event/common.git" + "@" + "d83d44 b13d07c2fd0a40101a7deef9b93b841732",
19 "v8/tools/swarming_client": 18 "v8/tools/swarming_client":
20 Var('git_url') + '/external/swarming.client.git' + '@' + "9cdd76171e517a430a 72dcd7d66ade67e109aa00", 19 Var('git_url') + '/external/swarming.client.git' + '@' + "9cdd76171e517a430a 72dcd7d66ade67e109aa00",
21 "v8/testing/gtest": 20 "v8/testing/gtest":
22 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6 6431cb592dad629028a50b3dd418a408c87", 21 Var("git_url") + "/external/github.com/google/googletest.git" + "@" + "6f8a6 6431cb592dad629028a50b3dd418a408c87",
23 "v8/testing/gmock": 22 "v8/testing/gmock":
24 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c 332ce19a33faf75be", 23 Var("git_url") + "/external/googlemock.git" + "@" + "0421b6f358139f02e102c9c 332ce19a33faf75be",
25 "v8/test/benchmarks/data": 24 "v8/test/benchmarks/data":
26 Var("git_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188267b4 560491ff9155c5ee13e207ecd65f", 25 Var("git_url") + "/v8/deps/third_party/benchmarks.git" + "@" + "05d7188267b4 560491ff9155c5ee13e207ecd65f",
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 'name': 'clang', 166 'name': 'clang',
168 'pattern': '.', 167 'pattern': '.',
169 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 168 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
170 }, 169 },
171 { 170 {
172 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 171 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
173 "pattern": ".", 172 "pattern": ".",
174 "action": ["python", "v8/build/gyp_v8"], 173 "action": ["python", "v8/build/gyp_v8"],
175 }, 174 },
176 ] 175 ]
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | build/standalone.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698