| 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", |
| 196 "xml_element_writer.cc", |
| 197 "xml_element_writer.h", |
| 192 ] | 198 ] |
| 193 | 199 |
| 194 deps = [ | 200 deps = [ |
| 195 "//base", | 201 "//base", |
| 196 "//base/third_party/dynamic_annotations", | 202 "//base/third_party/dynamic_annotations", |
| 197 ] | 203 ] |
| 198 } | 204 } |
| 199 | 205 |
| 200 action("last_commit_position") { | 206 action("last_commit_position") { |
| 201 script = "last_commit_position.py" | 207 script = "last_commit_position.py" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "substitution_pattern_unittest.cc", | 298 "substitution_pattern_unittest.cc", |
| 293 "substitution_writer_unittest.cc", | 299 "substitution_writer_unittest.cc", |
| 294 "target_unittest.cc", | 300 "target_unittest.cc", |
| 295 "template_unittest.cc", | 301 "template_unittest.cc", |
| 296 "test_with_scope.cc", | 302 "test_with_scope.cc", |
| 297 "test_with_scope.h", | 303 "test_with_scope.h", |
| 298 "tokenizer_unittest.cc", | 304 "tokenizer_unittest.cc", |
| 299 "unique_vector_unittest.cc", | 305 "unique_vector_unittest.cc", |
| 300 "value_unittest.cc", | 306 "value_unittest.cc", |
| 301 "visibility_unittest.cc", | 307 "visibility_unittest.cc", |
| 308 "visual_studio_utils_unittest.cc", |
| 309 "visual_studio_writer_unittest.cc", |
| 310 "xml_element_writer_unittest.cc", |
| 302 ] | 311 ] |
| 303 | 312 |
| 304 data = [ | 313 data = [ |
| 305 "format_test_data/", | 314 "format_test_data/", |
| 306 ] | 315 ] |
| 307 | 316 |
| 308 deps = [ | 317 deps = [ |
| 309 ":gn_lib", | 318 ":gn_lib", |
| 310 "//base/test:run_all_unittests", | 319 "//base/test:run_all_unittests", |
| 311 "//base/test:test_support", | 320 "//base/test:test_support", |
| 312 "//testing/gtest", | 321 "//testing/gtest", |
| 313 ] | 322 ] |
| 314 } | 323 } |
| OLD | NEW |