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 { |
(...skipping 19 matching lines...) Expand all Loading... |
30 'arguments.cc', | 30 'arguments.cc', |
31 'arguments.h', | 31 'arguments.h', |
32 'array_buffer.cc', | 32 'array_buffer.cc', |
33 'array_buffer.h', | 33 'array_buffer.h', |
34 'context_holder.cc', | 34 'context_holder.cc', |
35 'context_holder.h', | 35 'context_holder.h', |
36 'converter.cc', | 36 'converter.cc', |
37 'converter.h', | 37 'converter.h', |
38 'dictionary.cc', | 38 'dictionary.cc', |
39 'dictionary.h', | 39 'dictionary.h', |
40 'initialize.cc', | 40 'gin.cc', |
41 'initialize.h', | 41 'gin.h', |
42 'per_context_data.cc', | 42 'per_context_data.cc', |
43 'per_context_data.h', | 43 'per_context_data.h', |
44 'per_isolate_data.cc', | 44 'per_isolate_data.cc', |
45 'per_isolate_data.h', | 45 'per_isolate_data.h', |
46 'runner.cc', | 46 'runner.cc', |
47 'runner.h', | 47 'runner.h', |
48 'try_catch.cc', | 48 'try_catch.cc', |
49 'try_catch.h', | 49 'try_catch.h', |
50 'wrapper_info.cc', | 50 'wrapper_info.cc', |
51 'wrapper_info.h', | 51 'wrapper_info.h', |
52 ], | 52 ], |
53 }, | 53 }, |
54 { | 54 { |
55 'target_name': 'gin_shell', | 55 'target_name': 'gin_shell', |
56 'type': 'executable', | 56 'type': 'executable', |
57 'dependencies': [ | 57 'dependencies': [ |
| 58 '../base/base.gyp:base_i18n', |
58 'gin', | 59 'gin', |
59 ], | 60 ], |
60 'sources': [ | 61 'sources': [ |
61 'shell/gin_main.cc', | 62 'shell/gin_main.cc', |
62 ], | 63 ], |
63 'msvs_settings': { | 64 'msvs_settings': { |
64 'VCLinkerTool': { | 65 'VCLinkerTool': { |
65 'SubSystem': '1', # /SUBSYSTEM:CONSOLE | 66 'SubSystem': '1', # /SUBSYSTEM:CONSOLE |
66 }, | 67 }, |
67 }, | 68 }, |
(...skipping 27 matching lines...) Expand all Loading... |
95 ], | 96 ], |
96 'sources': [ | 97 'sources': [ |
97 'converter_unittest.cc', | 98 'converter_unittest.cc', |
98 'test/run_all_unittests.cc', | 99 'test/run_all_unittests.cc', |
99 'test/run_js_tests.cc', | 100 'test/run_js_tests.cc', |
100 'runner_unittest.cc', | 101 'runner_unittest.cc', |
101 ], | 102 ], |
102 }, | 103 }, |
103 ], | 104 ], |
104 } | 105 } |
OLD | NEW |