| 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 "//testing/gtest", | 638 "//testing/gtest", |
| 639 "//ui/gfx", | 639 "//ui/gfx", |
| 640 "//ui/gfx/geometry", | 640 "//ui/gfx/geometry", |
| 641 ] | 641 ] |
| 642 | 642 |
| 643 if (!is_ios) { | 643 if (!is_ios) { |
| 644 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. | 644 deps += [ "//cc:test_support" ] # TODO: Fix this test to not depend on cc. |
| 645 } | 645 } |
| 646 } | 646 } |
| 647 | 647 |
| 648 if (is_linux && !is_chromeos) { | 648 if (is_linux && !use_cros_fe) { |
| 649 # TODO(GYP): Figure out which of these work and are needed on other platforms. | 649 # TODO(GYP): Figure out which of these work and are needed on other platforms. |
| 650 executable("image_operations_bench") { | 650 executable("image_operations_bench") { |
| 651 sources = [ | 651 sources = [ |
| 652 "ext/image_operations_bench.cc", | 652 "ext/image_operations_bench.cc", |
| 653 ] | 653 ] |
| 654 | 654 |
| 655 deps = [ | 655 deps = [ |
| 656 ":skia", | 656 ":skia", |
| 657 "//base", | 657 "//base", |
| 658 ] | 658 ] |
| 659 } | 659 } |
| 660 | 660 |
| 661 executable("filter_fuzz_stub") { | 661 executable("filter_fuzz_stub") { |
| 662 testonly = true | 662 testonly = true |
| 663 sources = [ | 663 sources = [ |
| 664 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 664 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 665 ] | 665 ] |
| 666 | 666 |
| 667 deps = [ | 667 deps = [ |
| 668 ":skia", | 668 ":skia", |
| 669 "//base", | 669 "//base", |
| 670 "//base/test:test_support", | 670 "//base/test:test_support", |
| 671 ] | 671 ] |
| 672 } | 672 } |
| 673 } | 673 } |
| OLD | NEW |