OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 "scoped_ns_graphics_context_save_gstate_mac.h", | 160 "scoped_ns_graphics_context_save_gstate_mac.h", |
161 "scoped_ns_graphics_context_save_gstate_mac.mm", | 161 "scoped_ns_graphics_context_save_gstate_mac.mm", |
162 "scoped_ui_graphics_push_context_ios.h", | 162 "scoped_ui_graphics_push_context_ios.h", |
163 "scoped_ui_graphics_push_context_ios.mm", | 163 "scoped_ui_graphics_push_context_ios.mm", |
164 "scrollbar_size.cc", | 164 "scrollbar_size.cc", |
165 "scrollbar_size.h", | 165 "scrollbar_size.h", |
166 "selection_model.cc", | 166 "selection_model.cc", |
167 "selection_model.h", | 167 "selection_model.h", |
168 "sequential_id_generator.cc", | 168 "sequential_id_generator.cc", |
169 "sequential_id_generator.h", | 169 "sequential_id_generator.h", |
| 170 "shadow_util.cc", |
| 171 "shadow_util.h", |
170 "shadow_value.cc", | 172 "shadow_value.cc", |
171 "shadow_value.h", | 173 "shadow_value.h", |
172 "skbitmap_operations.cc", | 174 "skbitmap_operations.cc", |
173 "skbitmap_operations.h", | 175 "skbitmap_operations.h", |
174 "skia_util.cc", | 176 "skia_util.cc", |
175 "skia_util.h", | 177 "skia_util.h", |
176 "switches.cc", | 178 "switches.cc", |
177 "switches.h", | 179 "switches.h", |
178 "sys_color_change_listener.cc", | 180 "sys_color_change_listener.cc", |
179 "sys_color_change_listener.h", | 181 "sys_color_change_listener.h", |
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 | 748 |
747 fuzzer_test("color_transform_fuzztest") { | 749 fuzzer_test("color_transform_fuzztest") { |
748 sources = [ | 750 sources = [ |
749 "color_transform_fuzzer.cc", | 751 "color_transform_fuzzer.cc", |
750 ] | 752 ] |
751 deps = [ | 753 deps = [ |
752 ":gfx", | 754 ":gfx", |
753 ] | 755 ] |
754 libfuzzer_options = [ "max_len=1024" ] | 756 libfuzzer_options = [ "max_len=1024" ] |
755 } | 757 } |
OLD | NEW |