| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "value_extractors.cc", | 200 "value_extractors.cc", |
| 201 "value_extractors.h", | 201 "value_extractors.h", |
| 202 "variables.cc", | 202 "variables.cc", |
| 203 "variables.h", | 203 "variables.h", |
| 204 "visibility.cc", | 204 "visibility.cc", |
| 205 "visibility.h", | 205 "visibility.h", |
| 206 "visual_studio_utils.cc", | 206 "visual_studio_utils.cc", |
| 207 "visual_studio_utils.h", | 207 "visual_studio_utils.h", |
| 208 "visual_studio_writer.cc", | 208 "visual_studio_writer.cc", |
| 209 "visual_studio_writer.h", | 209 "visual_studio_writer.h", |
| 210 "xcode_object.cc", |
| 211 "xcode_object.h", |
| 212 "xcode_writer.cc", |
| 213 "xcode_writer.h", |
| 210 "xml_element_writer.cc", | 214 "xml_element_writer.cc", |
| 211 "xml_element_writer.h", | 215 "xml_element_writer.h", |
| 212 ] | 216 ] |
| 213 | 217 |
| 214 deps = [ | 218 deps = [ |
| 215 "//base", | 219 "//base", |
| 216 "//base/third_party/dynamic_annotations", | 220 "//base/third_party/dynamic_annotations", |
| 221 "//third_party/re2", |
| 217 ] | 222 ] |
| 218 } | 223 } |
| 219 | 224 |
| 220 action("last_commit_position") { | 225 action("last_commit_position") { |
| 221 script = "last_commit_position.py" | 226 script = "last_commit_position.py" |
| 222 | 227 |
| 223 # This dependency forces a re-run when the code is synced. | 228 # This dependency forces a re-run when the code is synced. |
| 224 inputs = [ | 229 inputs = [ |
| 225 "//build/util/LASTCHANGE", | 230 "//build/util/LASTCHANGE", |
| 226 ] | 231 ] |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 "format_test_data/", | 326 "format_test_data/", |
| 322 ] | 327 ] |
| 323 | 328 |
| 324 deps = [ | 329 deps = [ |
| 325 ":gn_lib", | 330 ":gn_lib", |
| 326 "//base/test:run_all_unittests", | 331 "//base/test:run_all_unittests", |
| 327 "//base/test:test_support", | 332 "//base/test:test_support", |
| 328 "//testing/gtest", | 333 "//testing/gtest", |
| 329 ] | 334 ] |
| 330 } | 335 } |
| OLD | NEW |