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': [ | 13 'include_dirs': [ |
14 '..' | 14 '..' |
15 ], | 15 ], |
16 'dependencies': [ | 16 'dependencies': [ |
17 '../v8/tools/gyp/v8.gyp:v8', | 17 '../v8/tools/gyp/v8.gyp:v8', |
18 ], | 18 ], |
19 'export_dependent_settings': [ | 19 'export_dependent_settings': [ |
20 '../v8/tools/gyp/v8.gyp:v8', | 20 '../v8/tools/gyp/v8.gyp:v8', |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
| 23 'modules/module_registry.cc', |
| 24 'modules/module_registry.h', |
23 'arguments.cc', | 25 'arguments.cc', |
24 'arguments.h', | 26 'arguments.h', |
25 'array_buffer.cc', | 27 'array_buffer.cc', |
26 'array_buffer.h', | 28 'array_buffer.h', |
27 'converter.cc', | 29 'converter.cc', |
28 'converter.h', | 30 'converter.h', |
| 31 'context_holder.cc', |
| 32 'context_holder.h', |
29 'dictionary.cc', | 33 'dictionary.cc', |
30 'dictionary.h', | 34 'dictionary.h', |
31 'initialize.cc', | 35 'initialize.cc', |
32 'initialize.h', | 36 'initialize.h', |
| 37 'per_context_data.cc', |
| 38 'per_context_data.h', |
33 'per_isolate_data.cc', | 39 'per_isolate_data.cc', |
34 'per_isolate_data.h', | 40 'per_isolate_data.h', |
35 'runner.cc', | 41 'runner.cc', |
36 'runner.h', | 42 'runner.h', |
37 'wrapper_info.cc', | 43 'wrapper_info.cc', |
38 'wrapper_info.h', | 44 'wrapper_info.h', |
39 ], | 45 ], |
40 }, | 46 }, |
41 { | 47 { |
42 'target_name': 'gin_test', | 48 'target_name': 'gin_test', |
43 'type': 'static_library', | 49 'type': 'static_library', |
44 'dependencies': [ | 50 'dependencies': [ |
45 '../base/base.gyp:base', | 51 '../base/base.gyp:base', |
46 '../testing/gtest.gyp:gtest', | 52 '../testing/gtest.gyp:gtest', |
47 'gin', | 53 'gin', |
48 ], | 54 ], |
49 'export_dependent_settings': [ | 55 'export_dependent_settings': [ |
50 '../base/base.gyp:base', | 56 '../base/base.gyp:base', |
51 '../testing/gtest.gyp:gtest', | 57 '../testing/gtest.gyp:gtest', |
52 'gin', | 58 'gin', |
53 ], | 59 ], |
54 'sources': [ | 60 'sources': [ |
| 61 'test/file_runner.cc', |
| 62 'test/file_runner.h', |
55 'test/gtest.cc', | 63 'test/gtest.cc', |
56 'test/gtest.h', | 64 'test/gtest.h', |
57 'test/v8_test.cc', | 65 'test/v8_test.cc', |
58 'test/v8_test.h', | 66 'test/v8_test.h', |
59 ], | 67 ], |
60 }, | 68 }, |
61 { | 69 { |
62 'target_name': 'gin_unittests', | 70 'target_name': 'gin_unittests', |
63 'type': 'executable', | 71 'type': 'executable', |
64 'dependencies': [ | 72 'dependencies': [ |
65 '../base/base.gyp:run_all_unittests', | 73 '../base/base.gyp:run_all_unittests', |
66 'gin_test', | 74 'gin_test', |
67 ], | 75 ], |
68 'sources': [ | 76 'sources': [ |
69 'converter_unittest.cc', | 77 'converter_unittest.cc', |
70 'test/run_all_unittests.cc', | 78 'test/run_all_unittests.cc', |
| 79 'test/run_js_tests.cc', |
71 'runner_unittest.cc', | 80 'runner_unittest.cc', |
72 ], | 81 ], |
73 }, | 82 }, |
74 ], | 83 ], |
75 } | 84 } |
OLD | NEW |