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