OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'gin', | 11 'target_name': 'gin', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'include_dirs': [ | |
14 '..' | |
15 ], | |
16 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', |
17 '../v8/tools/gyp/v8.gyp:v8', | 15 '../v8/tools/gyp/v8.gyp:v8', |
18 ], | 16 ], |
19 'export_dependent_settings': [ | 17 'export_dependent_settings': [ |
| 18 '../base/base.gyp:base', |
20 '../v8/tools/gyp/v8.gyp:v8', | 19 '../v8/tools/gyp/v8.gyp:v8', |
21 ], | 20 ], |
22 'sources': [ | 21 'sources': [ |
23 'modules/module_registry.cc', | 22 'modules/module_registry.cc', |
24 'modules/module_registry.h', | 23 'modules/module_registry.h', |
25 'arguments.cc', | 24 'arguments.cc', |
26 'arguments.h', | 25 'arguments.h', |
27 'array_buffer.cc', | 26 'array_buffer.cc', |
28 'array_buffer.h', | 27 'array_buffer.h', |
29 'converter.cc', | 28 'converter.cc', |
(...skipping 11 matching lines...) Expand all Loading... |
41 'runner.cc', | 40 'runner.cc', |
42 'runner.h', | 41 'runner.h', |
43 'wrapper_info.cc', | 42 'wrapper_info.cc', |
44 'wrapper_info.h', | 43 'wrapper_info.h', |
45 ], | 44 ], |
46 }, | 45 }, |
47 { | 46 { |
48 'target_name': 'gin_test', | 47 'target_name': 'gin_test', |
49 'type': 'static_library', | 48 'type': 'static_library', |
50 'dependencies': [ | 49 'dependencies': [ |
51 '../base/base.gyp:base', | |
52 '../testing/gtest.gyp:gtest', | 50 '../testing/gtest.gyp:gtest', |
53 'gin', | 51 'gin', |
54 ], | 52 ], |
55 'export_dependent_settings': [ | 53 'export_dependent_settings': [ |
56 '../base/base.gyp:base', | |
57 '../testing/gtest.gyp:gtest', | 54 '../testing/gtest.gyp:gtest', |
58 'gin', | 55 'gin', |
59 ], | 56 ], |
60 'sources': [ | 57 'sources': [ |
61 'test/file_runner.cc', | 58 'test/file_runner.cc', |
62 'test/file_runner.h', | 59 'test/file_runner.h', |
63 'test/gtest.cc', | 60 'test/gtest.cc', |
64 'test/gtest.h', | 61 'test/gtest.h', |
65 'test/v8_test.cc', | 62 'test/v8_test.cc', |
66 'test/v8_test.h', | 63 'test/v8_test.h', |
67 ], | 64 ], |
68 }, | 65 }, |
69 { | 66 { |
70 'target_name': 'gin_unittests', | 67 'target_name': 'gin_unittests', |
71 'type': 'executable', | 68 'type': 'executable', |
72 'dependencies': [ | 69 'dependencies': [ |
73 '../base/base.gyp:run_all_unittests', | 70 '../base/base.gyp:run_all_unittests', |
74 'gin_test', | 71 'gin_test', |
75 ], | 72 ], |
76 'sources': [ | 73 'sources': [ |
77 'converter_unittest.cc', | 74 'converter_unittest.cc', |
78 'test/run_all_unittests.cc', | 75 'test/run_all_unittests.cc', |
79 'test/run_js_tests.cc', | 76 'test/run_js_tests.cc', |
80 'runner_unittest.cc', | 77 'runner_unittest.cc', |
81 ], | 78 ], |
82 }, | 79 }, |
83 ], | 80 ], |
84 } | 81 } |
OLD | NEW |