| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 "scrollbar_size.cc", | 163 "scrollbar_size.cc", |
| 164 "scrollbar_size.h", | 164 "scrollbar_size.h", |
| 165 "selection_model.cc", | 165 "selection_model.cc", |
| 166 "selection_model.h", | 166 "selection_model.h", |
| 167 "sequential_id_generator.cc", | 167 "sequential_id_generator.cc", |
| 168 "sequential_id_generator.h", | 168 "sequential_id_generator.h", |
| 169 "shadow_value.cc", | 169 "shadow_value.cc", |
| 170 "shadow_value.h", | 170 "shadow_value.h", |
| 171 "skbitmap_operations.cc", | 171 "skbitmap_operations.cc", |
| 172 "skbitmap_operations.h", | 172 "skbitmap_operations.h", |
| 173 "skia_color_space_util.cc", |
| 174 "skia_color_space_util.h", |
| 173 "skia_util.cc", | 175 "skia_util.cc", |
| 174 "skia_util.h", | 176 "skia_util.h", |
| 175 "switches.cc", | 177 "switches.cc", |
| 176 "switches.h", | 178 "switches.h", |
| 177 "sys_color_change_listener.cc", | 179 "sys_color_change_listener.cc", |
| 178 "sys_color_change_listener.h", | 180 "sys_color_change_listener.h", |
| 179 "text_constants.h", | 181 "text_constants.h", |
| 180 "text_elider.cc", | 182 "text_elider.cc", |
| 181 "text_elider.h", | 183 "text_elider.h", |
| 182 "text_utils.cc", | 184 "text_utils.cc", |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 763 | 765 |
| 764 fuzzer_test("color_transform_fuzztest") { | 766 fuzzer_test("color_transform_fuzztest") { |
| 765 sources = [ | 767 sources = [ |
| 766 "color_transform_fuzzer.cc", | 768 "color_transform_fuzzer.cc", |
| 767 ] | 769 ] |
| 768 deps = [ | 770 deps = [ |
| 769 ":gfx", | 771 ":gfx", |
| 770 ] | 772 ] |
| 771 libfuzzer_options = [ "max_len=1024" ] | 773 libfuzzer_options = [ "max_len=1024" ] |
| 772 } | 774 } |
| OLD | NEW |