| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 } | 205 } |
| 206 | 206 |
| 207 executable("gn") { | 207 executable("gn") { |
| 208 sources = [ | 208 sources = [ |
| 209 "gn_main.cc", | 209 "gn_main.cc", |
| 210 ] | 210 ] |
| 211 | 211 |
| 212 deps = [ | 212 deps = [ |
| 213 ":gn_lib", | 213 ":gn_lib", |
| 214 ":last_commit_position", | 214 ":last_commit_position", |
| 215 "//base", |
| 215 ] | 216 ] |
| 216 } | 217 } |
| 217 | 218 |
| 218 test("gn_unittests") { | 219 test("gn_unittests") { |
| 219 sources = [ | 220 sources = [ |
| 220 "action_target_generator_unittest.cc", | 221 "action_target_generator_unittest.cc", |
| 221 "builder_unittest.cc", | 222 "builder_unittest.cc", |
| 222 "c_include_iterator_unittest.cc", | 223 "c_include_iterator_unittest.cc", |
| 223 "command_format_unittest.cc", | 224 "command_format_unittest.cc", |
| 224 "config_values_extractors_unittest.cc", | 225 "config_values_extractors_unittest.cc", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 } | 276 } |
| 276 | 277 |
| 277 executable("generate_test_gn_data") { | 278 executable("generate_test_gn_data") { |
| 278 sources = [ | 279 sources = [ |
| 279 "generate_test_gn_data.cc", | 280 "generate_test_gn_data.cc", |
| 280 ] | 281 ] |
| 281 deps = [ | 282 deps = [ |
| 282 "//base", | 283 "//base", |
| 283 ] | 284 ] |
| 284 } | 285 } |
| OLD | NEW |