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

Unified Diff: test/mkgrokdump/mkgrokdump.gyp

Issue 2809653003: Introduce mkgrokdump to update tools/v8heapconst.py. (Closed)
Patch Set: remove infra hack 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
« no previous file with comments | « test/mkgrokdump/mkgrokdump.cc ('k') | test/mkgrokdump/mkgrokdump.isolate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mkgrokdump/mkgrokdump.gyp
diff --git a/test/mkgrokdump/mkgrokdump.gyp b/test/mkgrokdump/mkgrokdump.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..56f9ad14e09ed7df9962ba1a1c08fabee1009e42
--- /dev/null
+++ b/test/mkgrokdump/mkgrokdump.gyp
@@ -0,0 +1,46 @@
+# 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,
+ },
+ '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',
+ ],
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [
+ 'mkgrokdump.cc',
+ ],
+ },
+ ],
+ 'conditions': [
+ ['test_isolation_mode != "noop"', {
+ 'targets': [
+ {
+ 'target_name': 'mkgrokdump_run',
+ 'type': 'none',
+ 'dependencies': [
+ 'mkgrokdump',
+ ],
+ 'includes': [
+ '../../gypfiles/isolate.gypi',
+ ],
+ 'sources': [
+ 'mkgrokdump.isolate',
+ ],
+ },
+ ],
+ }],
+ ],
+}
« 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