Fix IT2Me.
[chromium-blink-merge.git] / gin / gin.gyp
blobcaa2ba465d840d5a96b64d0781589d3b013c96d8
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.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'gin',
12       'type': '<(component)',
13       'dependencies': [
14         '../base/base.gyp:base',
15         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
16         '../v8/tools/gyp/v8.gyp:v8',
18       ],
19       'export_dependent_settings': [
20         '../base/base.gyp:base',
21         '../v8/tools/gyp/v8.gyp:v8',
22       ],
23       'defines': [
24         'GIN_IMPLEMENTATION',
25       ],
26       'sources': [
27         'arguments.cc',
28         'arguments.h',
29         'array_buffer.cc',
30         'array_buffer.h',
31         'context_holder.cc',
32         'converter.cc',
33         'converter.h',
34         'debug_impl.cc',
35         'debug_impl.h',
36         'dictionary.cc',
37         'dictionary.h',
38         'function_template.cc',
39         'function_template.h',
40         'gin_export.h',
41         'handle.h',
42         'interceptor.cc',
43         'interceptor.h',
44         'isolate_holder.cc',
45         'modules/console.cc',
46         'modules/console.h',
47         'modules/file_module_provider.cc',
48         'modules/file_module_provider.h',
49         'modules/module_registry.cc',
50         'modules/module_registry.h',
51         'modules/module_registry_observer.h',
52         'modules/module_runner_delegate.cc',
53         'modules/module_runner_delegate.h',
54         'modules/timer.cc',
55         'modules/timer.h',
56         'object_template_builder.cc',
57         'object_template_builder.h',
58         'per_context_data.cc',
59         'per_context_data.h',
60         'per_isolate_data.cc',
61         'per_isolate_data.h',
62         'public/context_holder.h',
63         'public/debug.h',
64         'public/gin_embedders.h',
65         'public/isolate_holder.h',
66         'public/v8_platform.h',
67         'public/wrapper_info.h',
68         'runner.cc',
69         'runner.h',
70         'shell_runner.cc',
71         'shell_runner.h',
72         'try_catch.cc',
73         'try_catch.h',
74         'v8_platform.cc',
75         'wrappable.cc',
76         'wrappable.h',
77         'wrapper_info.cc',
78       ],
79     },
80     {
81       'target_name': 'gin_shell',
82       'type': 'executable',
83       'dependencies': [
84         '../base/base.gyp:base',
85         '../base/base.gyp:base_i18n',
86         '../v8/tools/gyp/v8.gyp:v8',
87         'gin',
88       ],
89       'sources': [
90         'shell/gin_main.cc',
91       ],
92       'msvs_settings': {
93         'VCLinkerTool': {
94           'SubSystem': '1', # /SUBSYSTEM:CONSOLE
95         },
96       },
97     },
98     {
99       'target_name': 'gin_test',
100       'type': 'static_library',
101       'dependencies': [
102         '../testing/gtest.gyp:gtest',
103         '../v8/tools/gyp/v8.gyp:v8',
104         'gin',
105       ],
106       'export_dependent_settings': [
107         '../testing/gtest.gyp:gtest',
108         'gin',
109       ],
110       'sources': [
111         'test/file.cc',
112         'test/file.h',
113         'test/file_runner.cc',
114         'test/file_runner.h',
115         'test/gc.cc',
116         'test/gc.h',
117         'test/gtest.cc',
118         'test/gtest.h',
119         'test/v8_test.cc',
120         'test/v8_test.h',
121       ],
122     },
123     {
124       'target_name': 'gin_unittests',
125       'type': 'executable',
126       'dependencies': [
127         '../base/base.gyp:test_support_base',
128         '../v8/tools/gyp/v8.gyp:v8',
129         'gin_test',
130       ],
131       'sources': [
132         'converter_unittest.cc',
133         'interceptor_unittest.cc',
134         'modules/module_registry_unittest.cc',
135         'modules/timer_unittest.cc',
136         'per_context_data_unittest.cc',
137         'shell_runner_unittest.cc',
138         'shell/gin_shell_unittest.cc',
139         'test/run_all_unittests.cc',
140         'test/run_js_tests.cc',
141         'wrappable_unittest.cc',
142       ],
143     },
144   ],