OLD | NEW |
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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 "//testing/gtest", | 700 "//testing/gtest", |
701 "//ui/gfx", | 701 "//ui/gfx", |
702 "//ui/gfx/geometry", | 702 "//ui/gfx/geometry", |
703 ] | 703 ] |
704 | 704 |
705 if (!is_ios) { | 705 if (!is_ios) { |
706 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. | 706 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. |
707 } | 707 } |
708 } | 708 } |
709 | 709 |
710 executable("image_operations_bench") { | 710 if (!is_ios) { |
711 sources = [ | 711 executable("image_operations_bench") { |
712 "ext/image_operations_bench.cc", | 712 sources = [ |
713 ] | 713 "ext/image_operations_bench.cc", |
| 714 ] |
714 | 715 |
715 deps = [ | 716 deps = [ |
716 ":skia", | 717 ":skia", |
717 "//base", | 718 "//base", |
718 "//build/config/sanitizers:deps", | 719 "//build/config/sanitizers:deps", |
719 ] | 720 ] |
| 721 } |
| 722 |
| 723 executable("filter_fuzz_stub") { |
| 724 testonly = true |
| 725 sources = [ |
| 726 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 727 ] |
| 728 |
| 729 deps = [ |
| 730 ":skia", |
| 731 "//base", |
| 732 "//base/test:test_support", |
| 733 "//build/config/sanitizers:deps", |
| 734 ] |
| 735 } |
720 } | 736 } |
721 | |
722 executable("filter_fuzz_stub") { | |
723 testonly = true | |
724 sources = [ | |
725 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | |
726 ] | |
727 | |
728 deps = [ | |
729 ":skia", | |
730 "//base", | |
731 "//base/test:test_support", | |
732 "//build/config/sanitizers:deps", | |
733 ] | |
734 } | |
OLD | NEW |