| 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("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/skia/gn/shared_sources.gni") | 10 import("//third_party/skia/gn/shared_sources.gni") |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 | 719 |
| 720 if (!is_ios) { | 720 if (!is_ios) { |
| 721 executable("image_operations_bench") { | 721 executable("image_operations_bench") { |
| 722 sources = [ | 722 sources = [ |
| 723 "ext/image_operations_bench.cc", | 723 "ext/image_operations_bench.cc", |
| 724 ] | 724 ] |
| 725 | 725 |
| 726 deps = [ | 726 deps = [ |
| 727 ":skia", | 727 ":skia", |
| 728 "//base", | 728 "//base", |
| 729 "//build/config/sanitizers:deps", | 729 "//build/config:exe_and_shlib_deps", |
| 730 "//build/win:default_exe_manifest", | 730 "//build/win:default_exe_manifest", |
| 731 ] | 731 ] |
| 732 } | 732 } |
| 733 | 733 |
| 734 executable("filter_fuzz_stub") { | 734 executable("filter_fuzz_stub") { |
| 735 testonly = true | 735 testonly = true |
| 736 sources = [ | 736 sources = [ |
| 737 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 737 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
| 738 ] | 738 ] |
| 739 | 739 |
| 740 deps = [ | 740 deps = [ |
| 741 ":skia", | 741 ":skia", |
| 742 "//base", | 742 "//base", |
| 743 "//base/test:test_support", | 743 "//base/test:test_support", |
| 744 "//build/config/sanitizers:deps", | 744 "//build/config:exe_and_shlib_deps", |
| 745 "//build/win:default_exe_manifest", | 745 "//build/win:default_exe_manifest", |
| 746 ] | 746 ] |
| 747 } | 747 } |
| 748 } | 748 } |
| OLD | NEW |