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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 "text_utils.h", | 187 "text_utils.h", |
188 "text_utils_android.cc", | 188 "text_utils_android.cc", |
189 "text_utils_ios.mm", | 189 "text_utils_ios.mm", |
190 "transform.cc", | 190 "transform.cc", |
191 "transform.h", | 191 "transform.h", |
192 "transform_util.cc", | 192 "transform_util.cc", |
193 "transform_util.h", | 193 "transform_util.h", |
194 "ui_gfx_exports.cc", | 194 "ui_gfx_exports.cc", |
195 "utf16_indexing.cc", | 195 "utf16_indexing.cc", |
196 "utf16_indexing.h", | 196 "utf16_indexing.h", |
| 197 "vsync_provider.cc", |
197 "vsync_provider.h", | 198 "vsync_provider.h", |
198 "win/direct_manipulation.cc", | 199 "win/direct_manipulation.cc", |
199 "win/direct_manipulation.h", | 200 "win/direct_manipulation.h", |
200 "win/direct_write.cc", | 201 "win/direct_write.cc", |
201 "win/direct_write.h", | 202 "win/direct_write.h", |
202 "win/hwnd_util.cc", | 203 "win/hwnd_util.cc", |
203 "win/hwnd_util.h", | 204 "win/hwnd_util.h", |
204 "win/physical_size.cc", | 205 "win/physical_size.cc", |
205 "win/physical_size.h", | 206 "win/physical_size.h", |
206 "win/rendering_window_manager.cc", | 207 "win/rendering_window_manager.cc", |
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
746 | 747 |
747 fuzzer_test("color_transform_fuzztest") { | 748 fuzzer_test("color_transform_fuzztest") { |
748 sources = [ | 749 sources = [ |
749 "color_transform_fuzzer.cc", | 750 "color_transform_fuzzer.cc", |
750 ] | 751 ] |
751 deps = [ | 752 deps = [ |
752 ":gfx", | 753 ":gfx", |
753 ] | 754 ] |
754 libfuzzer_options = [ "max_len=1024" ] | 755 libfuzzer_options = [ "max_len=1024" ] |
755 } | 756 } |
OLD | NEW |