| 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 "//testing/gtest", | 622 "//testing/gtest", |
| 623 "//ui/gfx", | 623 "//ui/gfx", |
| 624 "//ui/gfx/geometry", | 624 "//ui/gfx/geometry", |
| 625 ] | 625 ] |
| 626 | 626 |
| 627 if (!is_ios) { | 627 if (!is_ios) { |
| 628 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. | 628 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. |
| 629 } | 629 } |
| 630 } | 630 } |
| 631 | 631 |
| 632 if (is_linux && !is_chromeos) { | 632 if (is_linux && !is_chromeos_ui) { |
| 633 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 633 # TODO(GYP): Figure out which of these work and are needed on other platforms. |
| 634 executable("image_operations_bench") { | 634 executable("image_operations_bench") { |
| 635 sources = [ | 635 sources = [ |
| 636 "ext/image_operations_bench.cc", | 636 "ext/image_operations_bench.cc", |
| 637 ] | 637 ] |
| 638 | 638 |
| 639 deps = [ | 639 deps = [ |
| 640 ":skia", | 640 ":skia", |
| 641 "//base", | 641 "//base", |
| 642 ] | 642 ] |
| 643 } | 643 } |
| 644 | 644 |
| 645 executable("filter_fuzz_stub") { | 645 executable("filter_fuzz_stub") { |
| 646 testonly = true | 646 testonly = true |
| 647 sources = [ | 647 sources = [ |
| 648 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 648 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 649 ] | 649 ] |
| 650 | 650 |
| 651 deps = [ | 651 deps = [ |
| 652 ":skia", | 652 ":skia", |
| 653 "//base", | 653 "//base", |
| 654 "//base/test:test_support", | 654 "//base/test:test_support", |
| 655 ] | 655 ] |
| 656 } | 656 } |
| 657 } | 657 } |
| OLD | NEW |