| 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 gyp_file = "gn.gyp" | 5 gyp_file = "gn.gyp" |
| 6 | 6 |
| 7 static_library("gn_lib") { | 7 static_library("gn_lib") { |
| 8 sources = [ | 8 sources = [ |
| 9 "args.cc", | 9 "args.cc", |
| 10 "args.h", | 10 "args.h", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "input_file_manager.cc", | 67 "input_file_manager.cc", |
| 68 "input_file_manager.h", | 68 "input_file_manager.h", |
| 69 "item.cc", | 69 "item.cc", |
| 70 "item.h", | 70 "item.h", |
| 71 "item_node.cc", | 71 "item_node.cc", |
| 72 "item_node.h", | 72 "item_node.h", |
| 73 "item_tree.cc", | 73 "item_tree.cc", |
| 74 "item_tree.h", | 74 "item_tree.h", |
| 75 "label.cc", | 75 "label.cc", |
| 76 "label.h", | 76 "label.h", |
| 77 "label_ptr.h", |
| 77 "location.cc", | 78 "location.cc", |
| 78 "location.h", | 79 "location.h", |
| 79 "ninja_binary_target_writer.cc", | 80 "ninja_binary_target_writer.cc", |
| 80 "ninja_binary_target_writer.h", | 81 "ninja_binary_target_writer.h", |
| 81 "ninja_build_writer.cc", | 82 "ninja_build_writer.cc", |
| 82 "ninja_build_writer.h", | 83 "ninja_build_writer.h", |
| 83 "ninja_copy_target_writer.cc", | 84 "ninja_copy_target_writer.cc", |
| 84 "ninja_copy_target_writer.h", | 85 "ninja_copy_target_writer.h", |
| 85 "ninja_group_target_writer.cc", | 86 "ninja_group_target_writer.cc", |
| 86 "ninja_group_target_writer.h", | 87 "ninja_group_target_writer.h", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 "//base:run_all_unittests", | 196 "//base:run_all_unittests", |
| 196 "//base:test_support_base", | 197 "//base:test_support_base", |
| 197 "//testing:gtest", | 198 "//testing:gtest", |
| 198 ] | 199 ] |
| 199 } | 200 } |
| 200 | 201 |
| 201 executable("generate_test_gn_data") { | 202 executable("generate_test_gn_data") { |
| 202 sources = [ "generate_test_gn_data.cc" ] | 203 sources = [ "generate_test_gn_data.cc" ] |
| 203 deps = [ "//base" ] | 204 deps = [ "//base" ] |
| 204 } | 205 } |
| OLD | NEW |