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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 "canvas_unittest.cc", | 618 "canvas_unittest.cc", |
619 "canvas_unittest_mac.mm", | 619 "canvas_unittest_mac.mm", |
620 "codec/jpeg_codec_unittest.cc", | 620 "codec/jpeg_codec_unittest.cc", |
621 "codec/png_codec_unittest.cc", | 621 "codec/png_codec_unittest.cc", |
622 "color_analysis_unittest.cc", | 622 "color_analysis_unittest.cc", |
623 "color_space_unittest.cc", | 623 "color_space_unittest.cc", |
624 "color_transform_unittest.cc", | 624 "color_transform_unittest.cc", |
625 "color_utils_unittest.cc", | 625 "color_utils_unittest.cc", |
626 "font_fallback_mac_unittest.cc", | 626 "font_fallback_mac_unittest.cc", |
627 "font_list_unittest.cc", | 627 "font_list_unittest.cc", |
| 628 "geometry/axis_transform2d_unittest.cc", |
628 "geometry/box_unittest.cc", | 629 "geometry/box_unittest.cc", |
629 "geometry/cubic_bezier_unittest.cc", | 630 "geometry/cubic_bezier_unittest.cc", |
630 "geometry/insets_unittest.cc", | 631 "geometry/insets_unittest.cc", |
631 "geometry/matrix3_unittest.cc", | 632 "geometry/matrix3_unittest.cc", |
632 "geometry/point3_unittest.cc", | 633 "geometry/point3_unittest.cc", |
633 "geometry/point_unittest.cc", | 634 "geometry/point_unittest.cc", |
634 "geometry/quad_unittest.cc", | 635 "geometry/quad_unittest.cc", |
635 "geometry/rect_unittest.cc", | 636 "geometry/rect_unittest.cc", |
636 "geometry/safe_integer_conversions_unittest.cc", | 637 "geometry/safe_integer_conversions_unittest.cc", |
637 "geometry/scroll_offset_unittest.cc", | 638 "geometry/scroll_offset_unittest.cc", |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 | 760 |
760 fuzzer_test("color_transform_fuzztest") { | 761 fuzzer_test("color_transform_fuzztest") { |
761 sources = [ | 762 sources = [ |
762 "color_transform_fuzzer.cc", | 763 "color_transform_fuzzer.cc", |
763 ] | 764 ] |
764 deps = [ | 765 deps = [ |
765 ":gfx", | 766 ":gfx", |
766 ] | 767 ] |
767 libfuzzer_options = [ "max_len=1024" ] | 768 libfuzzer_options = [ "max_len=1024" ] |
768 } | 769 } |
OLD | NEW |