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

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

Issue 2064533002: [GN] Add JSON project writer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [GN] Add myself to AUTHORS Created 4 years, 5 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
« no previous file with comments | « AUTHORS ('k') | tools/gn/command_desc.cc » ('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 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
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",
61 "eclipse_writer.cc", 63 "eclipse_writer.cc",
62 "eclipse_writer.h", 64 "eclipse_writer.h",
63 "err.cc", 65 "err.cc",
64 "err.h", 66 "err.h",
65 "escape.cc", 67 "escape.cc",
66 "escape.h", 68 "escape.h",
67 "exec_process.cc", 69 "exec_process.cc",
68 "exec_process.h", 70 "exec_process.h",
69 "filesystem_utils.cc", 71 "filesystem_utils.cc",
70 "filesystem_utils.h", 72 "filesystem_utils.h",
(...skipping 23 matching lines...) Expand all
94 "inherited_libraries.cc", 96 "inherited_libraries.cc",
95 "inherited_libraries.h", 97 "inherited_libraries.h",
96 "input_conversion.cc", 98 "input_conversion.cc",
97 "input_conversion.h", 99 "input_conversion.h",
98 "input_file.cc", 100 "input_file.cc",
99 "input_file.h", 101 "input_file.h",
100 "input_file_manager.cc", 102 "input_file_manager.cc",
101 "input_file_manager.h", 103 "input_file_manager.h",
102 "item.cc", 104 "item.cc",
103 "item.h", 105 "item.h",
106 "json_project_writer.cc",
107 "json_project_writer.h",
104 "label.cc", 108 "label.cc",
105 "label.h", 109 "label.h",
106 "label_pattern.cc", 110 "label_pattern.cc",
107 "label_pattern.h", 111 "label_pattern.h",
108 "label_ptr.h", 112 "label_ptr.h",
109 "lib_file.cc", 113 "lib_file.cc",
110 "lib_file.h", 114 "lib_file.h",
111 "loader.cc", 115 "loader.cc",
112 "loader.h", 116 "loader.h",
113 "location.cc", 117 "location.cc",
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 "format_test_data/", 337 "format_test_data/",
334 ] 338 ]
335 339
336 deps = [ 340 deps = [
337 ":gn_lib", 341 ":gn_lib",
338 "//base/test:run_all_unittests", 342 "//base/test:run_all_unittests",
339 "//base/test:test_support", 343 "//base/test:test_support",
340 "//testing/gtest", 344 "//testing/gtest",
341 ] 345 ]
342 } 346 }
OLDNEW
« no previous file with comments | « AUTHORS ('k') | tools/gn/command_desc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698