| OLD | NEW |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 gyp_file = "gn.gyp" |
| 6 |
| 1 static_library("gn_lib") { | 7 static_library("gn_lib") { |
| 2 sources = [ | 8 sources = [ |
| 3 "args.cc", | 9 "args.cc", |
| 4 "args.h", | 10 "args.h", |
| 5 "binary_target_generator.cc", | 11 "binary_target_generator.cc", |
| 6 "binary_target_generator.h", | 12 "binary_target_generator.h", |
| 7 "build_settings.cc", | 13 "build_settings.cc", |
| 8 "build_settings.h", | 14 "build_settings.h", |
| 9 "command_args.cc", | 15 "command_args.cc", |
| 10 "command_desc.cc", | 16 "command_desc.cc", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "function_process_file_template.cc", | 45 "function_process_file_template.cc", |
| 40 "function_read_file.cc", | 46 "function_read_file.cc", |
| 41 "function_rebase_path.cc", | 47 "function_rebase_path.cc", |
| 42 "function_set_default_toolchain.cc", | 48 "function_set_default_toolchain.cc", |
| 43 "function_set_defaults.cc", | 49 "function_set_defaults.cc", |
| 44 "function_template.cc", | 50 "function_template.cc", |
| 45 "function_toolchain.cc", | 51 "function_toolchain.cc", |
| 46 "function_write_file.cc", | 52 "function_write_file.cc", |
| 47 "group_target_generator.cc", | 53 "group_target_generator.cc", |
| 48 "group_target_generator.h", | 54 "group_target_generator.h", |
| 55 "gyp_binary_target_writer.cc", |
| 56 "gyp_binary_target_writer.h", |
| 57 "gyp_helper.cc", |
| 58 "gyp_helper.h", |
| 59 "gyp_target_writer.cc", |
| 60 "gyp_target_writer.h", |
| 49 "import_manager.cc", | 61 "import_manager.cc", |
| 50 "import_manager.h", | 62 "import_manager.h", |
| 51 "input_conversion.cc", | 63 "input_conversion.cc", |
| 52 "input_conversion.h", | 64 "input_conversion.h", |
| 53 "input_file.cc", | 65 "input_file.cc", |
| 54 "input_file.h", | 66 "input_file.h", |
| 55 "input_file_manager.cc", | 67 "input_file_manager.cc", |
| 56 "input_file_manager.h", | 68 "input_file_manager.h", |
| 57 "item.cc", | 69 "item.cc", |
| 58 "item.h", | 70 "item.h", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "//base:run_all_unittests", | 195 "//base:run_all_unittests", |
| 184 "//base:test_support_base", | 196 "//base:test_support_base", |
| 185 "//testing:gtest", | 197 "//testing:gtest", |
| 186 ] | 198 ] |
| 187 } | 199 } |
| 188 | 200 |
| 189 executable("generate_test_gn_data") { | 201 executable("generate_test_gn_data") { |
| 190 sources = [ "generate_test_gn_data.cc" ] | 202 sources = [ "generate_test_gn_data.cc" ] |
| 191 deps = [ "//base" ] | 203 deps = [ "//base" ] |
| 192 } | 204 } |
| OLD | NEW |