OLD | NEW |
(Empty) | |
| 1 # Copyright 2013 The Chromium 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 'chromium_code': 1, |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'gin', |
| 12 'type': 'static_library', |
| 13 'include_dirs': [ |
| 14 '..' |
| 15 ], |
| 16 'dependencies': [ |
| 17 '../v8/tools/gyp/v8.gyp:v8', |
| 18 ], |
| 19 'export_dependent_settings': [ |
| 20 '../v8/tools/gyp/v8.gyp:v8', |
| 21 ], |
| 22 'sources': [ |
| 23 'array_buffer.cc', |
| 24 'array_buffer.h', |
| 25 'converter.cc', |
| 26 'converter.h', |
| 27 'initialize.cc', |
| 28 'initialize.h', |
| 29 'per_isolate_data.cc', |
| 30 'per_isolate_data.h', |
| 31 'runner.cc', |
| 32 'runner.h', |
| 33 'wrapper_info.cc', |
| 34 'wrapper_info.h', |
| 35 ], |
| 36 }, |
| 37 { |
| 38 'target_name': 'gin_unittests', |
| 39 'type': 'executable', |
| 40 'dependencies': [ |
| 41 '../base/base.gyp:base', |
| 42 '../base/base.gyp:run_all_unittests', |
| 43 '../testing/gtest.gyp:gtest', |
| 44 'gin', |
| 45 ], |
| 46 'sources': [ |
| 47 'test/v8_test.cc', |
| 48 'test/run_all_unittests.cc', |
| 49 'converter_unittest.cc', |
| 50 'runner_unittest.cc', |
| 51 ], |
| 52 }, |
| 53 ], |
| 54 } |
OLD | NEW |