OLD | NEW |
1 { | 1 { |
2 'variables': { | 2 'variables': { |
3 'chromium_code': 1, | 3 'chromium_code': 1, |
4 }, | 4 }, |
5 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 'target_name': 'gn_lib', | 7 'target_name': 'gn_lib', |
8 'type': 'static_library', | 8 'type': 'static_library', |
9 'dependencies': [ | 9 'dependencies': [ |
10 '../../base/base.gyp:base', | 10 '../../base/base.gyp:base', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'filesystem_utils.h', | 44 'filesystem_utils.h', |
45 'functions_target.cc', | 45 'functions_target.cc', |
46 'functions.cc', | 46 'functions.cc', |
47 'functions.h', | 47 'functions.h', |
48 'function_exec_script.cc', | 48 'function_exec_script.cc', |
49 'function_process_file_template.cc', | 49 'function_process_file_template.cc', |
50 'function_read_file.cc', | 50 'function_read_file.cc', |
51 'function_set_default_toolchain.cc', | 51 'function_set_default_toolchain.cc', |
52 'function_set_defaults.cc', | 52 'function_set_defaults.cc', |
53 'function_template.cc', | 53 'function_template.cc', |
| 54 'function_to_build_path.cc', |
54 'function_toolchain.cc', | 55 'function_toolchain.cc', |
55 'function_write_file.cc', | 56 'function_write_file.cc', |
56 'group_target_generator.cc', | 57 'group_target_generator.cc', |
57 'group_target_generator.h', | 58 'group_target_generator.h', |
58 'import_manager.cc', | 59 'import_manager.cc', |
59 'import_manager.h', | 60 'import_manager.h', |
60 'input_conversion.cc', | 61 'input_conversion.cc', |
61 'input_conversion.h', | 62 'input_conversion.h', |
62 'input_file.cc', | 63 'input_file.cc', |
63 'input_file.h', | 64 'input_file.h', |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 158 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
158 ], | 159 ], |
159 }, | 160 }, |
160 { | 161 { |
161 'target_name': 'gn_unittests', | 162 'target_name': 'gn_unittests', |
162 'type': '<(gtest_target_type)', | 163 'type': '<(gtest_target_type)', |
163 'sources': [ | 164 'sources': [ |
164 'escape_unittest.cc', | 165 'escape_unittest.cc', |
165 'file_template_unittest.cc', | 166 'file_template_unittest.cc', |
166 'filesystem_utils_unittest.cc', | 167 'filesystem_utils_unittest.cc', |
| 168 'function_to_build_path_unittest.cc', |
167 'input_conversion_unittest.cc', | 169 'input_conversion_unittest.cc', |
168 'label_unittest.cc', | 170 'label_unittest.cc', |
169 'ninja_helper_unittest.cc', | 171 'ninja_helper_unittest.cc', |
170 'parser_unittest.cc', | 172 'parser_unittest.cc', |
171 'path_output_unittest.cc', | 173 'path_output_unittest.cc', |
172 'pattern_unittest.cc', | 174 'pattern_unittest.cc', |
173 'scope_per_file_provider_unittest.cc', | 175 'scope_per_file_provider_unittest.cc', |
174 'source_dir_unittest.cc', | 176 'source_dir_unittest.cc', |
175 'string_utils_unittest.cc', | 177 'string_utils_unittest.cc', |
176 'target_generator_unittest.cc', | 178 'target_generator_unittest.cc', |
177 'target_manager_unittest.cc', | 179 'target_manager_unittest.cc', |
178 'target_unittest.cc', | 180 'target_unittest.cc', |
| 181 'test_with_scope.cc', |
| 182 'test_with_scope.h', |
179 'tokenizer_unittest.cc', | 183 'tokenizer_unittest.cc', |
180 ], | 184 ], |
181 'dependencies': [ | 185 'dependencies': [ |
182 'gn_lib', | 186 'gn_lib', |
183 '../../base/base.gyp:run_all_unittests', | 187 '../../base/base.gyp:run_all_unittests', |
184 '../../base/base.gyp:test_support_base', | 188 '../../base/base.gyp:test_support_base', |
185 '../../testing/gtest.gyp:gtest', | 189 '../../testing/gtest.gyp:gtest', |
186 ], | 190 ], |
187 }, | 191 }, |
188 { | 192 { |
189 'target_name': 'generate_test_gn_data', | 193 'target_name': 'generate_test_gn_data', |
190 'type': 'executable', | 194 'type': 'executable', |
191 'sources': [ | 195 'sources': [ |
192 'generate_test_gn_data.cc', | 196 'generate_test_gn_data.cc', |
193 ], | 197 ], |
194 'dependencies': [ | 198 'dependencies': [ |
195 '../../base/base.gyp:base', | 199 '../../base/base.gyp:base', |
196 ], | 200 ], |
197 } | 201 } |
198 ], | 202 ], |
199 } | 203 } |
OLD | NEW |