| 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 "linux/client_native_pixmap_factory_dmabuf.h", | 535 "linux/client_native_pixmap_factory_dmabuf.h", |
| 536 ] | 536 ] |
| 537 | 537 |
| 538 deps += [ "//third_party/libdrm" ] | 538 deps += [ "//third_party/libdrm" ] |
| 539 } | 539 } |
| 540 } | 540 } |
| 541 | 541 |
| 542 static_library("test_support") { | 542 static_library("test_support") { |
| 543 testonly = true | 543 testonly = true |
| 544 sources = [ | 544 sources = [ |
| 545 "animation/test_animation_delegate.h", |
| 545 "geometry/test/rect_test_util.cc", | 546 "geometry/test/rect_test_util.cc", |
| 546 "geometry/test/rect_test_util.h", | 547 "geometry/test/rect_test_util.h", |
| 547 "image/image_unittest_util.cc", | 548 "image/image_unittest_util.cc", |
| 548 "image/image_unittest_util.h", | 549 "image/image_unittest_util.h", |
| 549 "image/image_unittest_util_ios.mm", | 550 "image/image_unittest_util_ios.mm", |
| 550 "image/image_unittest_util_mac.mm", | 551 "image/image_unittest_util_mac.mm", |
| 551 "test/fontconfig_util_linux.cc", | 552 "test/fontconfig_util_linux.cc", |
| 552 "test/fontconfig_util_linux.h", | 553 "test/fontconfig_util_linux.h", |
| 553 "test/gfx_util.cc", | 554 "test/gfx_util.cc", |
| 554 "test/gfx_util.h", | 555 "test/gfx_util.h", |
| (...skipping 204 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 |