OLD | NEW |
(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 } |
OLD | NEW |