ac0fb70f3a
R=machenbach@chromium.org Bug: v8:7335 Cq-Include-Trybots: luci.v8.try:v8_linux_noi18n_rel_ng Change-Id: I70d639324f6de4dd11871f67953943e80c238a12 Reviewed-on: https://chromium-review.googlesource.com/890181 Commit-Queue: Yang Guo <yangguo@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#50946}
28 lines
591 B
Python
28 lines
591 B
Python
# 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': ['toolchain.gypi', 'features.gypi'],
|
|
'targets': [
|
|
{
|
|
'target_name': 'mkgrokdump',
|
|
'type': 'executable',
|
|
'dependencies': [
|
|
'v8.gyp:v8',
|
|
'v8.gyp:v8_libbase',
|
|
'v8.gyp:v8_libplatform',
|
|
],
|
|
'include_dirs': [
|
|
'..',
|
|
],
|
|
'sources': [
|
|
'../test/mkgrokdump/mkgrokdump.cc',
|
|
],
|
|
},
|
|
],
|
|
}
|