| 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_space_win.cc", | 67 "color_space_win.cc", |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 | 728 |
| 727 fuzzer_test("color_transform_fuzztest") { | 729 fuzzer_test("color_transform_fuzztest") { |
| 728 sources = [ | 730 sources = [ |
| 729 "color_transform_fuzzer.cc", | 731 "color_transform_fuzzer.cc", |
| 730 ] | 732 ] |
| 731 deps = [ | 733 deps = [ |
| 732 ":gfx", | 734 ":gfx", |
| 733 ] | 735 ] |
| 734 libfuzzer_options = [ "max_len=1024" ] | 736 libfuzzer_options = [ "max_len=1024" ] |
| 735 } | 737 } |
| OLD | NEW |