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 13 matching lines...) Expand all Loading... |
24 component("gfx") { | 24 component("gfx") { |
25 sources = [ | 25 sources = [ |
26 "android/gfx_jni_registrar.cc", | 26 "android/gfx_jni_registrar.cc", |
27 "android/gfx_jni_registrar.h", | 27 "android/gfx_jni_registrar.h", |
28 "android/java_bitmap.cc", | 28 "android/java_bitmap.cc", |
29 "android/java_bitmap.h", | 29 "android/java_bitmap.h", |
30 "android/view_configuration.cc", | 30 "android/view_configuration.cc", |
31 "android/view_configuration.h", | 31 "android/view_configuration.h", |
32 "animation/animation.cc", | 32 "animation/animation.cc", |
33 "animation/animation.h", | 33 "animation/animation.h", |
| 34 "animation/animation_change_type.h", |
34 "animation/animation_container.cc", | 35 "animation/animation_container.cc", |
35 "animation/animation_container.h", | 36 "animation/animation_container.h", |
36 "animation/animation_container_element.h", | 37 "animation/animation_container_element.h", |
37 "animation/animation_container_observer.h", | 38 "animation/animation_container_observer.h", |
38 "animation/animation_delegate.h", | 39 "animation/animation_delegate.h", |
39 "animation/animation_mac.mm", | 40 "animation/animation_mac.mm", |
40 "animation/animation_win.cc", | 41 "animation/animation_win.cc", |
41 "animation/linear_animation.cc", | 42 "animation/linear_animation.cc", |
42 "animation/linear_animation.h", | 43 "animation/linear_animation.h", |
43 "animation/multi_animation.cc", | 44 "animation/multi_animation.cc", |
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 | 766 |
766 fuzzer_test("color_transform_fuzztest") { | 767 fuzzer_test("color_transform_fuzztest") { |
767 sources = [ | 768 sources = [ |
768 "color_transform_fuzzer.cc", | 769 "color_transform_fuzzer.cc", |
769 ] | 770 ] |
770 deps = [ | 771 deps = [ |
771 ":gfx", | 772 ":gfx", |
772 ] | 773 ] |
773 libfuzzer_options = [ "max_len=1024" ] | 774 libfuzzer_options = [ "max_len=1024" ] |
774 } | 775 } |
OLD | NEW |