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