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("//device/vr/features/features.gni") | 6 import("//device/vr/features/features.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 defines = [ "GFX_SWITCHES_IMPLEMENTATION" ] | 571 defines = [ "GFX_SWITCHES_IMPLEMENTATION" ] |
572 | 572 |
573 deps = [ | 573 deps = [ |
574 "//base", | 574 "//base", |
575 ] | 575 ] |
576 } | 576 } |
577 | 577 |
578 static_library("test_support") { | 578 static_library("test_support") { |
579 testonly = true | 579 testonly = true |
580 sources = [ | 580 sources = [ |
| 581 "animation/animation_test_api.cc", |
| 582 "animation/animation_test_api.h", |
581 "animation/test_animation_delegate.h", | 583 "animation/test_animation_delegate.h", |
582 "geometry/test/rect_test_util.cc", | 584 "geometry/test/rect_test_util.cc", |
583 "geometry/test/rect_test_util.h", | 585 "geometry/test/rect_test_util.h", |
584 "image/image_unittest_util.cc", | 586 "image/image_unittest_util.cc", |
585 "image/image_unittest_util.h", | 587 "image/image_unittest_util.h", |
586 "image/image_unittest_util_ios.mm", | 588 "image/image_unittest_util_ios.mm", |
587 "image/image_unittest_util_mac.mm", | 589 "image/image_unittest_util_mac.mm", |
588 "test/fontconfig_util_linux.cc", | 590 "test/fontconfig_util_linux.cc", |
589 "test/fontconfig_util_linux.h", | 591 "test/fontconfig_util_linux.h", |
590 "test/gfx_util.cc", | 592 "test/gfx_util.cc", |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 | 801 |
800 fuzzer_test("color_transform_fuzztest") { | 802 fuzzer_test("color_transform_fuzztest") { |
801 sources = [ | 803 sources = [ |
802 "color_transform_fuzzer.cc", | 804 "color_transform_fuzzer.cc", |
803 ] | 805 ] |
804 deps = [ | 806 deps = [ |
805 ":gfx", | 807 ":gfx", |
806 ] | 808 ] |
807 libfuzzer_options = [ "max_len=1024" ] | 809 libfuzzer_options = [ "max_len=1024" ] |
808 } | 810 } |
OLD | NEW |