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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 "break_list.h", | 55 "break_list.h", |
56 "codec/jpeg_codec.cc", | 56 "codec/jpeg_codec.cc", |
57 "codec/jpeg_codec.h", | 57 "codec/jpeg_codec.h", |
58 "codec/png_codec.cc", | 58 "codec/png_codec.cc", |
59 "codec/png_codec.h", | 59 "codec/png_codec.h", |
60 "color_analysis.cc", | 60 "color_analysis.cc", |
61 "color_analysis.h", | 61 "color_analysis.h", |
62 "color_palette.h", | 62 "color_palette.h", |
63 "color_space.cc", | 63 "color_space.cc", |
64 "color_space.h", | 64 "color_space.h", |
| 65 "color_space_win.cc", |
| 66 "color_space_win.h", |
65 "color_transform.cc", | 67 "color_transform.cc", |
66 "color_transform.h", | 68 "color_transform.h", |
67 "color_utils.cc", | 69 "color_utils.cc", |
68 "color_utils.h", | 70 "color_utils.h", |
69 "decorated_text.cc", | 71 "decorated_text.cc", |
70 "decorated_text.h", | 72 "decorated_text.h", |
71 "favicon_size.cc", | 73 "favicon_size.cc", |
72 "favicon_size.h", | 74 "favicon_size.h", |
73 "font.cc", | 75 "font.cc", |
74 "font.h", | 76 "font.h", |
(...skipping 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 | 724 |
723 fuzzer_test("color_transform_fuzztest") { | 725 fuzzer_test("color_transform_fuzztest") { |
724 sources = [ | 726 sources = [ |
725 "color_transform_fuzzer.cc", | 727 "color_transform_fuzzer.cc", |
726 ] | 728 ] |
727 deps = [ | 729 deps = [ |
728 ":gfx", | 730 ":gfx", |
729 ] | 731 ] |
730 libfuzzer_options = [ "max_len=1024" ] | 732 libfuzzer_options = [ "max_len=1024" ] |
731 } | 733 } |
OLD | NEW |