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

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

Issue 1386783003: [GN]: Support for loadable modules (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 "path_output_unittest.cc", 282 "path_output_unittest.cc",
283 "pattern_unittest.cc", 283 "pattern_unittest.cc",
284 "runtime_deps_unittest.cc", 284 "runtime_deps_unittest.cc",
285 "scope_per_file_provider_unittest.cc", 285 "scope_per_file_provider_unittest.cc",
286 "scope_unittest.cc", 286 "scope_unittest.cc",
287 "source_dir_unittest.cc", 287 "source_dir_unittest.cc",
288 "source_file_unittest.cc", 288 "source_file_unittest.cc",
289 "string_utils_unittest.cc", 289 "string_utils_unittest.cc",
290 "substitution_pattern_unittest.cc", 290 "substitution_pattern_unittest.cc",
291 "substitution_writer_unittest.cc", 291 "substitution_writer_unittest.cc",
292 "target_generator_unittest.cc",
293 "target_unittest.cc", 292 "target_unittest.cc",
294 "template_unittest.cc", 293 "template_unittest.cc",
295 "test_with_scope.cc", 294 "test_with_scope.cc",
296 "test_with_scope.h", 295 "test_with_scope.h",
297 "tokenizer_unittest.cc", 296 "tokenizer_unittest.cc",
298 "unique_vector_unittest.cc", 297 "unique_vector_unittest.cc",
299 "value_unittest.cc", 298 "value_unittest.cc",
300 "visibility_unittest.cc", 299 "visibility_unittest.cc",
301 ] 300 ]
302 301
(...skipping 11 matching lines...) Expand all
314 313
315 executable("generate_test_gn_data") { 314 executable("generate_test_gn_data") {
316 sources = [ 315 sources = [
317 "generate_test_gn_data.cc", 316 "generate_test_gn_data.cc",
318 ] 317 ]
319 deps = [ 318 deps = [
320 "//base", 319 "//base",
321 "//build/config/sanitizers:deps", 320 "//build/config/sanitizers:deps",
322 ] 321 ]
323 } 322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698