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

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

Issue 806873003: tools/gn: Make it 'gn check' clean. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | no next file » | 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 } 205 }
206 206
207 executable("gn") { 207 executable("gn") {
208 sources = [ 208 sources = [
209 "gn_main.cc", 209 "gn_main.cc",
210 ] 210 ]
211 211
212 deps = [ 212 deps = [
213 ":gn_lib", 213 ":gn_lib",
214 ":last_commit_position", 214 ":last_commit_position",
215 "//base",
215 ] 216 ]
216 } 217 }
217 218
218 test("gn_unittests") { 219 test("gn_unittests") {
219 sources = [ 220 sources = [
220 "action_target_generator_unittest.cc", 221 "action_target_generator_unittest.cc",
221 "builder_unittest.cc", 222 "builder_unittest.cc",
222 "c_include_iterator_unittest.cc", 223 "c_include_iterator_unittest.cc",
223 "command_format_unittest.cc", 224 "command_format_unittest.cc",
224 "config_values_extractors_unittest.cc", 225 "config_values_extractors_unittest.cc",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 } 276 }
276 277
277 executable("generate_test_gn_data") { 278 executable("generate_test_gn_data") {
278 sources = [ 279 sources = [
279 "generate_test_gn_data.cc", 280 "generate_test_gn_data.cc",
280 ] 281 ]
281 deps = [ 282 deps = [
282 "//base", 283 "//base",
283 ] 284 ]
284 } 285 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698