| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "template.cc", | 139 "template.cc", |
| 140 "template.h", | 140 "template.h", |
| 141 "token.cc", | 141 "token.cc", |
| 142 "token.h", | 142 "token.h", |
| 143 "tokenizer.cc", | 143 "tokenizer.cc", |
| 144 "tokenizer.h", | 144 "tokenizer.h", |
| 145 "toolchain.cc", | 145 "toolchain.cc", |
| 146 "toolchain.h", | 146 "toolchain.h", |
| 147 "trace.cc", | 147 "trace.cc", |
| 148 "trace.h", | 148 "trace.h", |
| 149 "unique_vector.h", |
| 149 "value.cc", | 150 "value.cc", |
| 150 "value.h", | 151 "value.h", |
| 151 "value_extractors.cc", | 152 "value_extractors.cc", |
| 152 "value_extractors.h", | 153 "value_extractors.h", |
| 153 "variables.cc", | 154 "variables.cc", |
| 154 "variables.h", | 155 "variables.h", |
| 155 "visibility.cc", | 156 "visibility.cc", |
| 156 "visibility.h", | 157 "visibility.h", |
| 157 ] | 158 ] |
| 158 | 159 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "scope_per_file_provider_unittest.cc", | 208 "scope_per_file_provider_unittest.cc", |
| 208 "scope_unittest.cc", | 209 "scope_unittest.cc", |
| 209 "source_dir_unittest.cc", | 210 "source_dir_unittest.cc", |
| 210 "string_utils_unittest.cc", | 211 "string_utils_unittest.cc", |
| 211 "target_generator_unittest.cc", | 212 "target_generator_unittest.cc", |
| 212 "target_unittest.cc", | 213 "target_unittest.cc", |
| 213 "template_unittest.cc", | 214 "template_unittest.cc", |
| 214 "test_with_scope.cc", | 215 "test_with_scope.cc", |
| 215 "test_with_scope.h", | 216 "test_with_scope.h", |
| 216 "tokenizer_unittest.cc", | 217 "tokenizer_unittest.cc", |
| 218 "unique_vector_unittest.cc", |
| 217 "value_unittest.cc", | 219 "value_unittest.cc", |
| 218 "visibility_unittest.cc", | 220 "visibility_unittest.cc", |
| 219 ] | 221 ] |
| 220 deps = [ | 222 deps = [ |
| 221 ":gn_lib", | 223 ":gn_lib", |
| 222 "//base/test:test_support", | 224 "//base/test:test_support", |
| 223 "//testing/gtest", | 225 "//testing/gtest", |
| 224 ] | 226 ] |
| 225 } | 227 } |
| 226 | 228 |
| 227 executable("generate_test_gn_data") { | 229 executable("generate_test_gn_data") { |
| 228 sources = [ "generate_test_gn_data.cc" ] | 230 sources = [ "generate_test_gn_data.cc" ] |
| 229 deps = [ "//base" ] | 231 deps = [ "//base" ] |
| 230 } | 232 } |
| OLD | NEW |