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

Side by Side Diff: skia/BUILD.gn

Issue 1318343003: Annotate GN executables and shared_libraries with sanitizer deps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« 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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 if (is_linux && !is_chromeos) { 648 if (is_linux && !is_chromeos) {
649 # TODO(GYP): Figure out which of these work and are needed on other platforms. 649 # TODO(GYP): Figure out which of these work and are needed on other platforms.
650 executable("image_operations_bench") { 650 executable("image_operations_bench") {
651 sources = [ 651 sources = [
652 "ext/image_operations_bench.cc", 652 "ext/image_operations_bench.cc",
653 ] 653 ]
654 654
655 deps = [ 655 deps = [
656 ":skia", 656 ":skia",
657 "//base", 657 "//base",
658 "//build/config/sanitizers:deps",
658 ] 659 ]
659 } 660 }
660 661
661 executable("filter_fuzz_stub") { 662 executable("filter_fuzz_stub") {
662 testonly = true 663 testonly = true
663 sources = [ 664 sources = [
664 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", 665 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
665 ] 666 ]
666 667
667 deps = [ 668 deps = [
668 ":skia", 669 ":skia",
669 "//base", 670 "//base",
670 "//base/test:test_support", 671 "//base/test:test_support",
672 "//build/config/sanitizers:deps",
671 ] 673 ]
672 } 674 }
673 } 675 }
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