Chromium Code Reviews

Side by Side Diff: tools/mkgrokdump.gyp

Issue 2809653003: 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.
Jump to:
View unified diff |
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 'v8_enable_i18n_support%': 1,
9 },
10 'includes': ['../gypfiles/toolchain.gypi', '../gypfiles/features.gypi'],
11 'targets': [
12 {
13 'target_name': 'mkgrokdump',
14 'type': 'executable',
15 'dependencies': [
16 '../src/v8.gyp:v8',
17 '../src/v8.gyp:v8_libbase',
18 '../src/v8.gyp:v8_libplatform',
19 ],
20 'conditions': [
21 ['v8_enable_i18n_support==1', {
22 'dependencies': [
23 '<(icu_gyp_path):icui18n',
24 '<(icu_gyp_path):icuuc',
25 ],
26 }],
27 ],
28 'include_dirs+': [
29 '..',
30 ],
31 'sources': [
32 'mkgrokdump.cc',
33 ],
34 },
35 ],
36 }
OLDNEW

Powered by Google App Engine