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

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

Issue 646013003: GN: Capture and print stderr from exec_script (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ha, even better for diffing... using really low --similarity Created 6 years, 2 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 | « no previous file | tools/gn/exec_process.h » ('j') | tools/gn/exec_process.cc » ('J')
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 30 matching lines...) Expand all
41 "config_values_generator.cc", 41 "config_values_generator.cc",
42 "config_values_generator.h", 42 "config_values_generator.h",
43 "copy_target_generator.cc", 43 "copy_target_generator.cc",
44 "copy_target_generator.h", 44 "copy_target_generator.h",
45 "deps_iterator.cc", 45 "deps_iterator.cc",
46 "deps_iterator.h", 46 "deps_iterator.h",
47 "err.cc", 47 "err.cc",
48 "err.h", 48 "err.h",
49 "escape.cc", 49 "escape.cc",
50 "escape.h", 50 "escape.h",
51 "exec_process.cc",
52 "exec_process.h",
51 "filesystem_utils.cc", 53 "filesystem_utils.cc",
52 "filesystem_utils.h", 54 "filesystem_utils.h",
53 "functions.cc", 55 "functions.cc",
54 "functions.h", 56 "functions.h",
55 "functions_target.cc", 57 "functions_target.cc",
56 "function_exec_script.cc", 58 "function_exec_script.cc",
57 "function_foreach.cc", 59 "function_foreach.cc",
58 "function_get_label_info.cc", 60 "function_get_label_info.cc",
59 "function_get_path_info.cc", 61 "function_get_path_info.cc",
60 "function_get_target_outputs.cc", 62 "function_get_target_outputs.cc",
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 } 210 }
209 211
210 test("gn_unittests") { 212 test("gn_unittests") {
211 sources = [ 213 sources = [
212 "action_target_generator_unittest.cc", 214 "action_target_generator_unittest.cc",
213 "builder_unittest.cc", 215 "builder_unittest.cc",
214 "c_include_iterator_unittest.cc", 216 "c_include_iterator_unittest.cc",
215 "command_format_unittest.cc", 217 "command_format_unittest.cc",
216 "config_values_extractors_unittest.cc", 218 "config_values_extractors_unittest.cc",
217 "escape_unittest.cc", 219 "escape_unittest.cc",
220 "exec_process_unittest.cc",
218 "filesystem_utils_unittest.cc", 221 "filesystem_utils_unittest.cc",
219 "function_foreach_unittest.cc", 222 "function_foreach_unittest.cc",
220 "function_get_label_info_unittest.cc", 223 "function_get_label_info_unittest.cc",
221 "function_get_path_info_unittest.cc", 224 "function_get_path_info_unittest.cc",
222 "function_get_target_outputs_unittest.cc", 225 "function_get_target_outputs_unittest.cc",
223 "function_process_file_template_unittest.cc", 226 "function_process_file_template_unittest.cc",
224 "function_rebase_path_unittest.cc", 227 "function_rebase_path_unittest.cc",
225 "function_write_file_unittest.cc", 228 "function_write_file_unittest.cc",
226 "functions_target_unittest.cc", 229 "functions_target_unittest.cc",
227 "functions_unittest.cc", 230 "functions_unittest.cc",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 ":gn_lib", 265 ":gn_lib",
263 "//base/test:test_support", 266 "//base/test:test_support",
264 "//testing/gtest", 267 "//testing/gtest",
265 ] 268 ]
266 } 269 }
267 270
268 executable("generate_test_gn_data") { 271 executable("generate_test_gn_data") {
269 sources = [ "generate_test_gn_data.cc" ] 272 sources = [ "generate_test_gn_data.cc" ]
270 deps = [ "//base" ] 273 deps = [ "//base" ]
271 } 274 }
OLDNEW
« no previous file with comments | « no previous file | tools/gn/exec_process.h » ('j') | tools/gn/exec_process.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698