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 source_set("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", |
11 "action_values.cc", | 11 "action_values.cc", |
12 "action_values.h", | 12 "action_values.h", |
13 "args.cc", | 13 "args.cc", |
14 "args.h", | 14 "args.h", |
15 "binary_target_generator.cc", | 15 "binary_target_generator.cc", |
16 "binary_target_generator.h", | 16 "binary_target_generator.h", |
17 "build_settings.cc", | 17 "build_settings.cc", |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "//base/test:run_all_unittests", | 217 "//base/test:run_all_unittests", |
218 "//base/test:test_support", | 218 "//base/test:test_support", |
219 "//testing/gtest", | 219 "//testing/gtest", |
220 ] | 220 ] |
221 } | 221 } |
222 | 222 |
223 executable("generate_test_gn_data") { | 223 executable("generate_test_gn_data") { |
224 sources = [ "generate_test_gn_data.cc" ] | 224 sources = [ "generate_test_gn_data.cc" ] |
225 deps = [ "//base" ] | 225 deps = [ "//base" ] |
226 } | 226 } |
OLD | NEW |