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("//device/vr/features/features.gni") | 6 import("//device/vr/features/features.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "color_transform.h", | 60 "color_transform.h", |
61 "color_utils.cc", | 61 "color_utils.cc", |
62 "color_utils.h", | 62 "color_utils.h", |
63 "decorated_text.cc", | 63 "decorated_text.cc", |
64 "decorated_text.h", | 64 "decorated_text.h", |
65 "favicon_size.cc", | 65 "favicon_size.cc", |
66 "favicon_size.h", | 66 "favicon_size.h", |
67 "font.cc", | 67 "font.cc", |
68 "font.h", | 68 "font.h", |
69 "font_fallback.h", | 69 "font_fallback.h", |
| 70 "font_fallback_android.h", |
70 "font_fallback_linux.cc", | 71 "font_fallback_linux.cc", |
71 "font_fallback_linux.h", | 72 "font_fallback_linux.h", |
72 "font_fallback_mac.mm", | 73 "font_fallback_mac.mm", |
73 "font_fallback_win.cc", | 74 "font_fallback_win.cc", |
74 "font_fallback_win.h", | 75 "font_fallback_win.h", |
75 "font_list.cc", | 76 "font_list.cc", |
76 "font_list.h", | 77 "font_list.h", |
77 "font_list_impl.cc", | 78 "font_list_impl.cc", |
78 "font_list_impl.h", | 79 "font_list_impl.h", |
79 "font_render_params.cc", | 80 "font_render_params.cc", |
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
767 | 768 |
768 fuzzer_test("color_transform_fuzztest") { | 769 fuzzer_test("color_transform_fuzztest") { |
769 sources = [ | 770 sources = [ |
770 "color_transform_fuzzer.cc", | 771 "color_transform_fuzzer.cc", |
771 ] | 772 ] |
772 deps = [ | 773 deps = [ |
773 ":gfx", | 774 ":gfx", |
774 ] | 775 ] |
775 libfuzzer_options = [ "max_len=1024" ] | 776 libfuzzer_options = [ "max_len=1024" ] |
776 } | 777 } |
OLD | NEW |