Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: tools/gn/BUILD.gn

Issue 440333002: Support more configurability in GN toolchains (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unsigned check Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/gn/builder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "ninja_action_target_writer.cc", 86 "ninja_action_target_writer.cc",
87 "ninja_action_target_writer.h", 87 "ninja_action_target_writer.h",
88 "ninja_binary_target_writer.cc", 88 "ninja_binary_target_writer.cc",
89 "ninja_binary_target_writer.h", 89 "ninja_binary_target_writer.h",
90 "ninja_build_writer.cc", 90 "ninja_build_writer.cc",
91 "ninja_build_writer.h", 91 "ninja_build_writer.h",
92 "ninja_copy_target_writer.cc", 92 "ninja_copy_target_writer.cc",
93 "ninja_copy_target_writer.h", 93 "ninja_copy_target_writer.h",
94 "ninja_group_target_writer.cc", 94 "ninja_group_target_writer.cc",
95 "ninja_group_target_writer.h", 95 "ninja_group_target_writer.h",
96 "ninja_helper.cc", 96 "ninja_utils.cc",
97 "ninja_helper.h", 97 "ninja_utils.h",
98 "ninja_target_writer.cc", 98 "ninja_target_writer.cc",
99 "ninja_target_writer.h", 99 "ninja_target_writer.h",
100 "ninja_toolchain_writer.cc", 100 "ninja_toolchain_writer.cc",
101 "ninja_toolchain_writer.h", 101 "ninja_toolchain_writer.h",
102 "ninja_writer.cc", 102 "ninja_writer.cc",
103 "ninja_writer.h", 103 "ninja_writer.h",
104 "operators.cc", 104 "operators.cc",
105 "operators.h", 105 "operators.h",
106 "output_file.cc",
106 "output_file.h", 107 "output_file.h",
107 "parse_tree.cc", 108 "parse_tree.cc",
108 "parse_tree.h", 109 "parse_tree.h",
109 "parser.cc", 110 "parser.cc",
110 "parser.h", 111 "parser.h",
111 "path_output.cc", 112 "path_output.cc",
112 "path_output.h", 113 "path_output.h",
113 "pattern.cc", 114 "pattern.cc",
114 "pattern.h", 115 "pattern.h",
115 "scheduler.cc", 116 "scheduler.cc",
116 "scheduler.h", 117 "scheduler.h",
117 "scope.cc", 118 "scope.cc",
118 "scope.h", 119 "scope.h",
119 "scope_per_file_provider.cc", 120 "scope_per_file_provider.cc",
120 "scope_per_file_provider.h", 121 "scope_per_file_provider.h",
121 "settings.cc", 122 "settings.cc",
122 "settings.h", 123 "settings.h",
123 "setup.cc", 124 "setup.cc",
124 "setup.h", 125 "setup.h",
125 "source_dir.cc", 126 "source_dir.cc",
126 "source_dir.h", 127 "source_dir.h",
127 "source_file.cc", 128 "source_file.cc",
128 "source_file.h", 129 "source_file.h",
130 "source_file_type.cc",
131 "source_file_type.h",
129 "standard_out.cc", 132 "standard_out.cc",
130 "standard_out.h", 133 "standard_out.h",
131 "string_utils.cc", 134 "string_utils.cc",
132 "string_utils.h", 135 "string_utils.h",
133 "substitution_list.cc", 136 "substitution_list.cc",
134 "substitution_list.h", 137 "substitution_list.h",
135 "substitution_pattern.cc", 138 "substitution_pattern.cc",
136 "substitution_pattern.h", 139 "substitution_pattern.h",
137 "substitution_type.cc", 140 "substitution_type.cc",
138 "substitution_type.h", 141 "substitution_type.h",
139 "substitution_writer.cc", 142 "substitution_writer.cc",
140 "substitution_writer.h", 143 "substitution_writer.h",
141 "target.cc", 144 "target.cc",
142 "target.h", 145 "target.h",
143 "target_generator.cc", 146 "target_generator.cc",
144 "target_generator.h", 147 "target_generator.h",
145 "template.cc", 148 "template.cc",
146 "template.h", 149 "template.h",
147 "token.cc", 150 "token.cc",
148 "token.h", 151 "token.h",
149 "tokenizer.cc", 152 "tokenizer.cc",
153 "tool.cc",
154 "tool.h",
150 "tokenizer.h", 155 "tokenizer.h",
151 "toolchain.cc", 156 "toolchain.cc",
152 "toolchain.h", 157 "toolchain.h",
153 "trace.cc", 158 "trace.cc",
154 "trace.h", 159 "trace.h",
155 "unique_vector.h", 160 "unique_vector.h",
156 "value.cc", 161 "value.cc",
157 "value.h", 162 "value.h",
158 "value_extractors.cc", 163 "value_extractors.cc",
159 "value_extractors.h", 164 "value_extractors.h",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "function_write_file_unittest.cc", 202 "function_write_file_unittest.cc",
198 "functions_target_unittest.cc", 203 "functions_target_unittest.cc",
199 "functions_unittest.cc", 204 "functions_unittest.cc",
200 "header_checker_unittest.cc", 205 "header_checker_unittest.cc",
201 "input_conversion_unittest.cc", 206 "input_conversion_unittest.cc",
202 "label_unittest.cc", 207 "label_unittest.cc",
203 "loader_unittest.cc", 208 "loader_unittest.cc",
204 "ninja_action_target_writer_unittest.cc", 209 "ninja_action_target_writer_unittest.cc",
205 "ninja_binary_target_writer_unittest.cc", 210 "ninja_binary_target_writer_unittest.cc",
206 "ninja_copy_target_writer_unittest.cc", 211 "ninja_copy_target_writer_unittest.cc",
207 "ninja_helper_unittest.cc",
208 "ninja_target_writer_unittest.cc", 212 "ninja_target_writer_unittest.cc",
213 "ninja_toolchain_writer_unittest.cc",
209 "operators_unittest.cc", 214 "operators_unittest.cc",
210 "parse_tree_unittest.cc", 215 "parse_tree_unittest.cc",
211 "parser_unittest.cc", 216 "parser_unittest.cc",
212 "path_output_unittest.cc", 217 "path_output_unittest.cc",
213 "pattern_unittest.cc", 218 "pattern_unittest.cc",
214 "run_all_unittests.cc", 219 "run_all_unittests.cc",
215 "scope_per_file_provider_unittest.cc", 220 "scope_per_file_provider_unittest.cc",
216 "scope_unittest.cc", 221 "scope_unittest.cc",
217 "source_dir_unittest.cc", 222 "source_dir_unittest.cc",
218 "string_utils_unittest.cc", 223 "string_utils_unittest.cc",
(...skipping 13 matching lines...) Expand all
232 ":gn_lib", 237 ":gn_lib",
233 "//base/test:test_support", 238 "//base/test:test_support",
234 "//testing/gtest", 239 "//testing/gtest",
235 ] 240 ]
236 } 241 }
237 242
238 executable("generate_test_gn_data") { 243 executable("generate_test_gn_data") {
239 sources = [ "generate_test_gn_data.cc" ] 244 sources = [ "generate_test_gn_data.cc" ]
240 deps = [ "//base" ] 245 deps = [ "//base" ]
241 } 246 }
OLDNEW
« no previous file with comments | « no previous file | tools/gn/builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698