| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "config_values_extractors.cc", | 51 "config_values_extractors.cc", |
| 52 "config_values_extractors.h", | 52 "config_values_extractors.h", |
| 53 "config_values_generator.cc", | 53 "config_values_generator.cc", |
| 54 "config_values_generator.h", | 54 "config_values_generator.h", |
| 55 "copy_target_generator.cc", | 55 "copy_target_generator.cc", |
| 56 "copy_target_generator.h", | 56 "copy_target_generator.h", |
| 57 "create_bundle_target_generator.cc", | 57 "create_bundle_target_generator.cc", |
| 58 "create_bundle_target_generator.h", | 58 "create_bundle_target_generator.h", |
| 59 "deps_iterator.cc", | 59 "deps_iterator.cc", |
| 60 "deps_iterator.h", | 60 "deps_iterator.h", |
| 61 "desc_builder.cc", | |
| 62 "desc_builder.h", | |
| 63 "eclipse_writer.cc", | 61 "eclipse_writer.cc", |
| 64 "eclipse_writer.h", | 62 "eclipse_writer.h", |
| 65 "err.cc", | 63 "err.cc", |
| 66 "err.h", | 64 "err.h", |
| 67 "escape.cc", | 65 "escape.cc", |
| 68 "escape.h", | 66 "escape.h", |
| 69 "exec_process.cc", | 67 "exec_process.cc", |
| 70 "exec_process.h", | 68 "exec_process.h", |
| 71 "filesystem_utils.cc", | 69 "filesystem_utils.cc", |
| 72 "filesystem_utils.h", | 70 "filesystem_utils.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 96 "inherited_libraries.cc", | 94 "inherited_libraries.cc", |
| 97 "inherited_libraries.h", | 95 "inherited_libraries.h", |
| 98 "input_conversion.cc", | 96 "input_conversion.cc", |
| 99 "input_conversion.h", | 97 "input_conversion.h", |
| 100 "input_file.cc", | 98 "input_file.cc", |
| 101 "input_file.h", | 99 "input_file.h", |
| 102 "input_file_manager.cc", | 100 "input_file_manager.cc", |
| 103 "input_file_manager.h", | 101 "input_file_manager.h", |
| 104 "item.cc", | 102 "item.cc", |
| 105 "item.h", | 103 "item.h", |
| 106 "json_project_writer.cc", | |
| 107 "json_project_writer.h", | |
| 108 "label.cc", | 104 "label.cc", |
| 109 "label.h", | 105 "label.h", |
| 110 "label_pattern.cc", | 106 "label_pattern.cc", |
| 111 "label_pattern.h", | 107 "label_pattern.h", |
| 112 "label_ptr.h", | 108 "label_ptr.h", |
| 113 "lib_file.cc", | 109 "lib_file.cc", |
| 114 "lib_file.h", | 110 "lib_file.h", |
| 115 "loader.cc", | 111 "loader.cc", |
| 116 "loader.h", | 112 "loader.h", |
| 117 "location.cc", | 113 "location.cc", |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 "format_test_data/", | 333 "format_test_data/", |
| 338 ] | 334 ] |
| 339 | 335 |
| 340 deps = [ | 336 deps = [ |
| 341 ":gn_lib", | 337 ":gn_lib", |
| 342 "//base/test:run_all_unittests", | 338 "//base/test:run_all_unittests", |
| 343 "//base/test:test_support", | 339 "//base/test:test_support", |
| 344 "//testing/gtest", | 340 "//testing/gtest", |
| 345 ] | 341 ] |
| 346 } | 342 } |
| OLD | NEW |