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

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

Issue 23606031: GN: Use build directory for CD for scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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/function_exec_script.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 static_library("gn_lib") { 1 static_library("gn_lib") {
2 sources = [ 2 sources = [
3 "args.cc", 3 "args.cc",
4 "args.h", 4 "args.h",
5 "binary_target_generator.cc", 5 "binary_target_generator.cc",
6 "binary_target_generator.h", 6 "binary_target_generator.h",
7 "build_settings.cc", 7 "build_settings.cc",
8 "build_settings.h", 8 "build_settings.h",
9 "command_args.cc", 9 "command_args.cc",
10 "command_desc.cc", 10 "command_desc.cc",
(...skipping 23 matching lines...) Expand all
34 "filesystem_utils.h", 34 "filesystem_utils.h",
35 "functions.cc", 35 "functions.cc",
36 "functions.h", 36 "functions.h",
37 "functions_target.cc", 37 "functions_target.cc",
38 "function_exec_script.cc", 38 "function_exec_script.cc",
39 "function_process_file_template.cc", 39 "function_process_file_template.cc",
40 "function_read_file.cc", 40 "function_read_file.cc",
41 "function_set_default_toolchain.cc", 41 "function_set_default_toolchain.cc",
42 "function_set_defaults.cc", 42 "function_set_defaults.cc",
43 "function_template.cc", 43 "function_template.cc",
44 "function_to_build_path.cc",
44 "function_toolchain.cc", 45 "function_toolchain.cc",
45 "function_write_file.cc", 46 "function_write_file.cc",
46 "group_target_generator.cc", 47 "group_target_generator.cc",
47 "group_target_generator.h", 48 "group_target_generator.h",
48 "import_manager.cc", 49 "import_manager.cc",
49 "import_manager.h", 50 "import_manager.h",
50 "input_conversion.cc", 51 "input_conversion.cc",
51 "input_conversion.h", 52 "input_conversion.h",
52 "input_file.cc", 53 "input_file.cc",
53 "input_file.h", 54 "input_file.h",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 deps = [ 149 deps = [
149 ":gn_lib", 150 ":gn_lib",
150 ] 151 ]
151 } 152 }
152 153
153 test("gn_unittests") { 154 test("gn_unittests") {
154 sources = [ 155 sources = [
155 "escape_unittest.cc", 156 "escape_unittest.cc",
156 "file_template_unittest.cc", 157 "file_template_unittest.cc",
157 "filesystem_utils_unittest.cc", 158 "filesystem_utils_unittest.cc",
159 "function_to_build_path_unittest.cc",
158 "input_conversion_unittest.cc", 160 "input_conversion_unittest.cc",
159 "label_unittest.cc", 161 "label_unittest.cc",
160 "ninja_helper_unittest.cc", 162 "ninja_helper_unittest.cc",
161 "parser_unittest.cc", 163 "parser_unittest.cc",
162 "path_output_unittest.cc", 164 "path_output_unittest.cc",
163 "pattern_unittest.cc", 165 "pattern_unittest.cc",
164 "scope_per_file_provider_unittest.cc", 166 "scope_per_file_provider_unittest.cc",
165 "source_dir_unittest.cc", 167 "source_dir_unittest.cc",
166 "string_utils_unittest.cc", 168 "string_utils_unittest.cc",
167 "target_generator_unittest.cc", 169 "target_generator_unittest.cc",
168 "target_manager_unittest.cc", 170 "target_manager_unittest.cc",
169 "target_unittest.cc", 171 "target_unittest.cc",
172 "test_with_scope.cc",
173 "test_with_scope.h",
170 "tokenizer_unittest.cc", 174 "tokenizer_unittest.cc",
171 ] 175 ]
172 deps = [ 176 deps = [
173 ":gn_lib", 177 ":gn_lib",
174 "//base:run_all_unittests", 178 "//base:run_all_unittests",
175 "//base:test_support_base", 179 "//base:test_support_base",
176 "//testing:gtest", 180 "//testing:gtest",
177 ] 181 ]
178 } 182 }
179 183
180 executable("generate_test_gn_data") { 184 executable("generate_test_gn_data") {
181 sources = [ "generate_test_gn_data.cc" ] 185 sources = [ "generate_test_gn_data.cc" ]
182 deps = [ "//base" ] 186 deps = [ "//base" ]
183 } 187 }
OLDNEW
« no previous file with comments | « no previous file | tools/gn/function_exec_script.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698