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

Side by Side Diff: skia/BUILD.gn

Issue 1258273004: Annotate large GN targets for precompiled headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disable Created 5 years, 4 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 | « sandbox/win/BUILD.gn ('k') | storage/browser/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 (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("//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 if (current_cpu == "arm") { 8 if (current_cpu == "arm") {
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 } 10 }
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 if (is_clang) { 435 if (is_clang) {
436 # Skia won't compile with some of the more strict clang warnings. 436 # Skia won't compile with some of the more strict clang warnings.
437 # e.g. it does: 437 # e.g. it does:
438 # SkASSERT(!"sk_out_of_memory"); 438 # SkASSERT(!"sk_out_of_memory");
439 configs -= [ "//build/config/clang:extra_warnings" ] 439 configs -= [ "//build/config/clang:extra_warnings" ]
440 } 440 }
441 441
442 configs -= [ "//build/config/compiler:chromium_code" ] 442 configs -= [ "//build/config/compiler:chromium_code" ]
443 configs += [ 443 configs += [
444 ":skia_library_config", 444 ":skia_library_config",
445 "//build/config:precompiled_headers",
445 "//build/config/compiler:no_chromium_code", 446 "//build/config/compiler:no_chromium_code",
446 ] 447 ]
447 public_configs = [ ":skia_config" ] 448 public_configs = [ ":skia_config" ]
448 449
449 deps = [ 450 deps = [
450 ":skia_opts", 451 ":skia_opts",
451 "//base", 452 "//base",
452 "//base/third_party/dynamic_annotations", 453 "//base/third_party/dynamic_annotations",
453 "//third_party/zlib", 454 "//third_party/zlib",
454 ] 455 ]
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", 641 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
641 ] 642 ]
642 643
643 deps = [ 644 deps = [
644 ":skia", 645 ":skia",
645 "//base", 646 "//base",
646 "//base/test:test_support", 647 "//base/test:test_support",
647 ] 648 ]
648 } 649 }
649 } 650 }
OLDNEW
« no previous file with comments | « sandbox/win/BUILD.gn ('k') | storage/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698