| 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 defines = [ "GN_BUILD" ] | 5 defines = [ "GN_BUILD" ] |
| 6 | 6 |
| 7 static_library("gn_lib") { | 7 static_library("gn_lib") { |
| 8 sources = [ | 8 sources = [ |
| 9 "action_target_generator.cc", | 9 "action_target_generator.cc", |
| 10 "action_target_generator.h", | 10 "action_target_generator.h", |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 "scope_per_file_provider_unittest.cc", | 195 "scope_per_file_provider_unittest.cc", |
| 196 "scope_unittest.cc", | 196 "scope_unittest.cc", |
| 197 "source_dir_unittest.cc", | 197 "source_dir_unittest.cc", |
| 198 "string_utils_unittest.cc", | 198 "string_utils_unittest.cc", |
| 199 "target_generator_unittest.cc", | 199 "target_generator_unittest.cc", |
| 200 "target_unittest.cc", | 200 "target_unittest.cc", |
| 201 "template_unittest.cc", | 201 "template_unittest.cc", |
| 202 "test_with_scope.cc", | 202 "test_with_scope.cc", |
| 203 "test_with_scope.h", | 203 "test_with_scope.h", |
| 204 "tokenizer_unittest.cc", | 204 "tokenizer_unittest.cc", |
| 205 "value_unittest.cc", |
| 205 "visibility_unittest.cc", | 206 "visibility_unittest.cc", |
| 206 ] | 207 ] |
| 207 deps = [ | 208 deps = [ |
| 208 ":gn_lib", | 209 ":gn_lib", |
| 209 "//base/test:run_all_unittests", | 210 "//base/test:run_all_unittests", |
| 210 "//base/test:test_support", | 211 "//base/test:test_support", |
| 211 "//testing/gtest", | 212 "//testing/gtest", |
| 212 ] | 213 ] |
| 213 } | 214 } |
| 214 | 215 |
| 215 executable("generate_test_gn_data") { | 216 executable("generate_test_gn_data") { |
| 216 sources = [ "generate_test_gn_data.cc" ] | 217 sources = [ "generate_test_gn_data.cc" ] |
| 217 deps = [ "//base" ] | 218 deps = [ "//base" ] |
| 218 } | 219 } |
| OLD | NEW |