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

Unified 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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/mkgrokdump.gyp
diff --git a/tools/mkgrokdump.gyp b/tools/mkgrokdump.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..ed0ed9c859debd1dcf6a3c0a632e5fd44335ed68
--- /dev/null
+++ b/tools/mkgrokdump.gyp
@@ -0,0 +1,36 @@
+# Copyright 2017 the V8 project authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'v8_code': 1,
+ 'v8_enable_i18n_support%': 1,
+ },
+ 'includes': ['../gypfiles/toolchain.gypi', '../gypfiles/features.gypi'],
+ 'targets': [
+ {
+ 'target_name': 'mkgrokdump',
+ 'type': 'executable',
+ 'dependencies': [
+ '../src/v8.gyp:v8',
+ '../src/v8.gyp:v8_libbase',
+ '../src/v8.gyp:v8_libplatform',
+ ],
+ 'conditions': [
+ ['v8_enable_i18n_support==1', {
+ 'dependencies': [
+ '<(icu_gyp_path):icui18n',
+ '<(icu_gyp_path):icuuc',
+ ],
+ }],
+ ],
+ 'include_dirs+': [
+ '..',
+ ],
+ 'sources': [
+ 'mkgrokdump.cc',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698