| 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 if (is_linux && !is_chromeos) { | 710 executable("image_operations_bench") { |
| 711 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 711 sources = [ |
| 712 executable("image_operations_bench") { | 712 "ext/image_operations_bench.cc", |
| 713 sources = [ | 713 ] |
| 714 "ext/image_operations_bench.cc", | |
| 715 ] | |
| 716 | 714 |
| 717 deps = [ | 715 deps = [ |
| 718 ":skia", | 716 ":skia", |
| 719 "//base", | 717 "//base", |
| 720 "//build/config/sanitizers:deps", | 718 "//build/config/sanitizers:deps", |
| 721 ] | 719 ] |
| 722 } | 720 } |
| 723 | 721 |
| 724 executable("filter_fuzz_stub") { | 722 executable("filter_fuzz_stub") { |
| 725 testonly = true | 723 testonly = true |
| 726 sources = [ | 724 sources = [ |
| 727 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 725 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 728 ] | 726 ] |
| 729 | 727 |
| 730 deps = [ | 728 deps = [ |
| 731 ":skia", | 729 ":skia", |
| 732 "//base", | 730 "//base", |
| 733 "//base/test:test_support", | 731 "//base/test:test_support", |
| 734 "//build/config/sanitizers:deps", | 732 "//build/config/sanitizers:deps", |
| 735 ] | 733 ] |
| 736 } | |
| 737 } | 734 } |
| OLD | NEW |