| 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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 "ext/image_operations_bench.cc", | 658 "ext/image_operations_bench.cc", |
| 659 ] | 659 ] |
| 660 | 660 |
| 661 deps = [ | 661 deps = [ |
| 662 ":skia", | 662 ":skia", |
| 663 "//base", | 663 "//base", |
| 664 ] | 664 ] |
| 665 } | 665 } |
| 666 | 666 |
| 667 executable("filter_fuzz_stub") { | 667 executable("filter_fuzz_stub") { |
| 668 testonly = true |
| 668 sources = [ | 669 sources = [ |
| 669 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 670 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 670 ] | 671 ] |
| 671 | 672 |
| 672 deps = [ | 673 deps = [ |
| 673 ":skia", | 674 ":skia", |
| 674 "//base", | 675 "//base", |
| 676 "//base/test:test_support", |
| 675 ] | 677 ] |
| 676 } | 678 } |
| 677 } | 679 } |
| OLD | NEW |