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

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

Issue 1570113002: Visual Studio generators for GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move XmlElementWriter to separate file + minor fixes Created 4 years, 10 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/command_gen.cc » ('j') | tools/gn/visual_studio_writer.h » ('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 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 "trace.h", 182 "trace.h",
183 "unique_vector.h", 183 "unique_vector.h",
184 "value.cc", 184 "value.cc",
185 "value.h", 185 "value.h",
186 "value_extractors.cc", 186 "value_extractors.cc",
187 "value_extractors.h", 187 "value_extractors.h",
188 "variables.cc", 188 "variables.cc",
189 "variables.h", 189 "variables.h",
190 "visibility.cc", 190 "visibility.cc",
191 "visibility.h", 191 "visibility.h",
192 "visual_studio_utils.cc",
193 "visual_studio_utils.h",
194 "visual_studio_writer.cc",
195 "visual_studio_writer.h",
196 "xml_element_writer.cc",
197 "xml_element_writer.h",
192 ] 198 ]
193 199
194 deps = [ 200 deps = [
195 "//base", 201 "//base",
196 "//base/third_party/dynamic_annotations", 202 "//base/third_party/dynamic_annotations",
197 ] 203 ]
198 } 204 }
199 205
200 action("last_commit_position") { 206 action("last_commit_position") {
201 script = "last_commit_position.py" 207 script = "last_commit_position.py"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 "substitution_pattern_unittest.cc", 298 "substitution_pattern_unittest.cc",
293 "substitution_writer_unittest.cc", 299 "substitution_writer_unittest.cc",
294 "target_unittest.cc", 300 "target_unittest.cc",
295 "template_unittest.cc", 301 "template_unittest.cc",
296 "test_with_scope.cc", 302 "test_with_scope.cc",
297 "test_with_scope.h", 303 "test_with_scope.h",
298 "tokenizer_unittest.cc", 304 "tokenizer_unittest.cc",
299 "unique_vector_unittest.cc", 305 "unique_vector_unittest.cc",
300 "value_unittest.cc", 306 "value_unittest.cc",
301 "visibility_unittest.cc", 307 "visibility_unittest.cc",
308 "visual_studio_utils_unittest.cc",
309 "visual_studio_writer_unittest.cc",
310 "xml_element_writer_unittest.cc",
302 ] 311 ]
303 312
304 data = [ 313 data = [
305 "format_test_data/", 314 "format_test_data/",
306 ] 315 ]
307 316
308 deps = [ 317 deps = [
309 ":gn_lib", 318 ":gn_lib",
310 "//base/test:run_all_unittests", 319 "//base/test:run_all_unittests",
311 "//base/test:test_support", 320 "//base/test:test_support",
312 "//testing/gtest", 321 "//testing/gtest",
313 ] 322 ]
314 } 323 }
OLDNEW
« no previous file with comments | « no previous file | tools/gn/command_gen.cc » ('j') | tools/gn/visual_studio_writer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698