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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2151013002: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remoting 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 | « sql/BUILD.gn ('k') | third_party/WebKit/Source/web/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
9 import("//third_party/WebKit/Source/config.gni") 9 import("//third_party/WebKit/Source/config.gni")
10 import("//third_party/WebKit/Source/platform/platform.gni") 10 import("//third_party/WebKit/Source/platform/platform.gni")
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 include_dirs += [ "//third_party/openmax_dl" ] 465 include_dirs += [ "//third_party/openmax_dl" ]
466 deps += [ "//third_party/openmax_dl/dl" ] 466 deps += [ "//third_party/openmax_dl/dl" ]
467 } 467 }
468 468
469 if (remove_webcore_debug_symbols) { 469 if (remove_webcore_debug_symbols) {
470 configs -= [ "//build/config/compiler:default_symbols" ] 470 configs -= [ "//build/config/compiler:default_symbols" ]
471 configs += [ "//build/config/compiler:no_symbols" ] 471 configs += [ "//build/config/compiler:no_symbols" ]
472 } 472 }
473 } 473 }
474 474
475 source_set("test_support") { 475 static_library("test_support") {
476 sources = platform_test_support_files 476 sources = platform_test_support_files
477 visibility += [ "//third_party/WebKit/*" ] 477 visibility += [ "//third_party/WebKit/*" ]
478 testonly = true 478 testonly = true
479 479
480 configs += [ 480 configs += [
481 "//third_party/WebKit/Source:config", 481 "//third_party/WebKit/Source:config",
482 "//third_party/WebKit/Source:inside_blink", 482 "//third_party/WebKit/Source:inside_blink",
483 "//third_party/WebKit/Source:non_test_config", 483 "//third_party/WebKit/Source:non_test_config",
484 ] 484 ]
485 485
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 } 630 }
631 631
632 if (current_cpu == "x86" || current_cpu == "x64") { 632 if (current_cpu == "x86" || current_cpu == "x64") {
633 source_set("blink_x86_sse") { 633 source_set("blink_x86_sse") {
634 sources = blink_platform_sse_files 634 sources = blink_platform_sse_files
635 deps = [ 635 deps = [
636 ":blink_common", 636 ":blink_common",
637 ] 637 ]
638 } 638 }
639 } 639 }
OLDNEW
« no previous file with comments | « sql/BUILD.gn ('k') | third_party/WebKit/Source/web/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698