| 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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 "//testing/gtest", | 690 "//testing/gtest", |
| 691 "//ui/gfx", | 691 "//ui/gfx", |
| 692 "//ui/gfx/geometry", | 692 "//ui/gfx/geometry", |
| 693 ] | 693 ] |
| 694 | 694 |
| 695 if (!is_ios) { | 695 if (!is_ios) { |
| 696 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. | 696 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. |
| 697 } | 697 } |
| 698 } | 698 } |
| 699 | 699 |
| 700 if (is_linux && !is_chromeos) { | 700 executable("image_operations_bench") { |
| 701 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 701 sources = [ |
| 702 executable("image_operations_bench") { | 702 "ext/image_operations_bench.cc", |
| 703 sources = [ | 703 ] |
| 704 "ext/image_operations_bench.cc", | |
| 705 ] | |
| 706 | 704 |
| 707 deps = [ | 705 deps = [ |
| 708 ":skia", | 706 ":skia", |
| 709 "//base", | 707 "//base", |
| 710 "//build/config/sanitizers:deps", | 708 "//build/config/sanitizers:deps", |
| 711 ] | 709 ] |
| 712 } | 710 } |
| 713 | 711 |
| 714 executable("filter_fuzz_stub") { | 712 executable("filter_fuzz_stub") { |
| 715 testonly = true | 713 testonly = true |
| 716 sources = [ | 714 sources = [ |
| 717 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 715 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 718 ] | 716 ] |
| 719 | 717 |
| 720 deps = [ | 718 deps = [ |
| 721 ":skia", | 719 ":skia", |
| 722 "//base", | 720 "//base", |
| 723 "//base/test:test_support", | 721 "//base/test:test_support", |
| 724 "//build/config/sanitizers:deps", | 722 "//build/config/sanitizers:deps", |
| 725 ] | 723 ] |
| 726 } | |
| 727 } | 724 } |
| OLD | NEW |