OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 defines = [ "GN_BUILD" ] | 7 defines = [ "GN_BUILD" ] |
8 | 8 |
9 static_library("gn_lib") { | 9 static_library("gn_lib") { |
10 configs += [ "//build/config:precompiled_headers" ] | 10 configs += [ "//build/config:precompiled_headers" ] |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 "trace.h", | 182 "trace.h", |
183 "unique_vector.h", | 183 "unique_vector.h", |
184 "value.cc", | 184 "value.cc", |
185 "value.h", | 185 "value.h", |
186 "value_extractors.cc", | 186 "value_extractors.cc", |
187 "value_extractors.h", | 187 "value_extractors.h", |
188 "variables.cc", | 188 "variables.cc", |
189 "variables.h", | 189 "variables.h", |
190 "visibility.cc", | 190 "visibility.cc", |
191 "visibility.h", | 191 "visibility.h", |
| 192 "visual_studio_utils.cc", |
| 193 "visual_studio_utils.h", |
| 194 "visual_studio_writer.cc", |
| 195 "visual_studio_writer.h", |
192 ] | 196 ] |
193 | 197 |
194 deps = [ | 198 deps = [ |
195 "//base", | 199 "//base", |
196 "//base/third_party/dynamic_annotations", | 200 "//base/third_party/dynamic_annotations", |
197 ] | 201 ] |
198 } | 202 } |
199 | 203 |
200 action("last_commit_position") { | 204 action("last_commit_position") { |
201 script = "last_commit_position.py" | 205 script = "last_commit_position.py" |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 "substitution_pattern_unittest.cc", | 296 "substitution_pattern_unittest.cc", |
293 "substitution_writer_unittest.cc", | 297 "substitution_writer_unittest.cc", |
294 "target_unittest.cc", | 298 "target_unittest.cc", |
295 "template_unittest.cc", | 299 "template_unittest.cc", |
296 "test_with_scope.cc", | 300 "test_with_scope.cc", |
297 "test_with_scope.h", | 301 "test_with_scope.h", |
298 "tokenizer_unittest.cc", | 302 "tokenizer_unittest.cc", |
299 "unique_vector_unittest.cc", | 303 "unique_vector_unittest.cc", |
300 "value_unittest.cc", | 304 "value_unittest.cc", |
301 "visibility_unittest.cc", | 305 "visibility_unittest.cc", |
| 306 "visual_studio_utils_unittest.cc", |
| 307 "visual_studio_writer_unittest.cc", |
302 ] | 308 ] |
303 | 309 |
304 data = [ | 310 data = [ |
305 "format_test_data/", | 311 "format_test_data/", |
306 ] | 312 ] |
307 | 313 |
308 deps = [ | 314 deps = [ |
309 ":gn_lib", | 315 ":gn_lib", |
310 "//base/test:run_all_unittests", | 316 "//base/test:run_all_unittests", |
311 "//base/test:test_support", | 317 "//base/test:test_support", |
312 "//testing/gtest", | 318 "//testing/gtest", |
313 ] | 319 ] |
314 } | 320 } |
OLD | NEW |