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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "animation/linear_animation.h", | 46 "animation/linear_animation.h", |
47 "animation/multi_animation.cc", | 47 "animation/multi_animation.cc", |
48 "animation/multi_animation.h", | 48 "animation/multi_animation.h", |
49 "animation/slide_animation.cc", | 49 "animation/slide_animation.cc", |
50 "animation/slide_animation.h", | 50 "animation/slide_animation.h", |
51 "animation/throb_animation.cc", | 51 "animation/throb_animation.cc", |
52 "animation/throb_animation.h", | 52 "animation/throb_animation.h", |
53 "animation/tween.cc", | 53 "animation/tween.cc", |
54 "animation/tween.h", | 54 "animation/tween.h", |
55 "break_list.h", | 55 "break_list.h", |
| 56 "codec/install_skia_codec.cc", |
| 57 "codec/install_skia_codec.h", |
56 "codec/jpeg_codec.cc", | 58 "codec/jpeg_codec.cc", |
57 "codec/jpeg_codec.h", | 59 "codec/jpeg_codec.h", |
58 "codec/png_codec.cc", | 60 "codec/png_codec.cc", |
59 "codec/png_codec.h", | 61 "codec/png_codec.h", |
60 "color_analysis.cc", | 62 "color_analysis.cc", |
61 "color_analysis.h", | 63 "color_analysis.h", |
62 "color_palette.h", | 64 "color_palette.h", |
63 "color_space.cc", | 65 "color_space.cc", |
64 "color_space.h", | 66 "color_space.h", |
65 "color_transform.cc", | 67 "color_transform.cc", |
(...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 | 723 |
722 fuzzer_test("color_transform_fuzztest") { | 724 fuzzer_test("color_transform_fuzztest") { |
723 sources = [ | 725 sources = [ |
724 "color_transform_fuzzer.cc", | 726 "color_transform_fuzzer.cc", |
725 ] | 727 ] |
726 deps = [ | 728 deps = [ |
727 ":gfx", | 729 ":gfx", |
728 ] | 730 ] |
729 libfuzzer_options = [ "max_len=1024" ] | 731 libfuzzer_options = [ "max_len=1024" ] |
730 } | 732 } |
OLD | NEW |