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

Side by Side Diff: test/mkgrokdump/mkgrokdump.gyp

Issue 2824853003: Revert of Introduce mkgrokdump to update tools/v8heapconst.py. (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « test/mkgrokdump/mkgrokdump.cc ('k') | test/mkgrokdump/mkgrokdump.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2017 the V8 project authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'v8_code': 1,
8 },
9 'includes': ['../../gypfiles/toolchain.gypi', '../../gypfiles/features.gypi'],
10 'targets': [
11 {
12 'target_name': 'mkgrokdump',
13 'type': 'executable',
14 'dependencies': [
15 '../../src/v8.gyp:v8',
16 '../../src/v8.gyp:v8_libbase',
17 '../../src/v8.gyp:v8_libplatform',
18 ],
19 'include_dirs': [
20 '../..',
21 ],
22 'sources': [
23 'mkgrokdump.cc',
24 ],
25 },
26 ],
27 'conditions': [
28 ['test_isolation_mode != "noop"', {
29 'targets': [
30 {
31 'target_name': 'mkgrokdump_run',
32 'type': 'none',
33 'dependencies': [
34 'mkgrokdump',
35 ],
36 'includes': [
37 '../../gypfiles/isolate.gypi',
38 ],
39 'sources': [
40 'mkgrokdump.isolate',
41 ],
42 },
43 ],
44 }],
45 ],
46 }
OLDNEW
« no previous file with comments | « test/mkgrokdump/mkgrokdump.cc ('k') | test/mkgrokdump/mkgrokdump.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698