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

Side by Side Diff: skia/BUILD.gn

Issue 1126123004: Use TestDiscardableMemoryAllocator in filter_fuzz_stub. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mark filter fuzz stub as testonly Created 5 years, 7 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 | skia/skia.gyp » ('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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 "ext/image_operations_bench.cc", 658 "ext/image_operations_bench.cc",
659 ] 659 ]
660 660
661 deps = [ 661 deps = [
662 ":skia", 662 ":skia",
663 "//base", 663 "//base",
664 ] 664 ]
665 } 665 }
666 666
667 executable("filter_fuzz_stub") { 667 executable("filter_fuzz_stub") {
668 testonly = true
668 sources = [ 669 sources = [
669 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", 670 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
670 ] 671 ]
671 672
672 deps = [ 673 deps = [
673 ":skia", 674 ":skia",
674 "//base", 675 "//base",
676 "//base/test:test_support",
675 ] 677 ]
676 } 678 }
677 } 679 }
OLDNEW
« no previous file with comments | « no previous file | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698