| 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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 | 550 |
| 551 deps = [ | 551 deps = [ |
| 552 "//base", | 552 "//base", |
| 553 "//ui/gfx/geometry", | 553 "//ui/gfx/geometry", |
| 554 ] | 554 ] |
| 555 } | 555 } |
| 556 | 556 |
| 557 static_library("test_support") { | 557 static_library("test_support") { |
| 558 testonly = true | 558 testonly = true |
| 559 sources = [ | 559 sources = [ |
| 560 "geometry/test/rect_test_util.cc", |
| 561 "geometry/test/rect_test_util.h", |
| 560 "image/image_unittest_util.cc", | 562 "image/image_unittest_util.cc", |
| 561 "image/image_unittest_util.h", | 563 "image/image_unittest_util.h", |
| 562 "image/image_unittest_util_ios.mm", | 564 "image/image_unittest_util_ios.mm", |
| 563 "image/image_unittest_util_mac.mm", | 565 "image/image_unittest_util_mac.mm", |
| 564 "test/fontconfig_util_linux.cc", | 566 "test/fontconfig_util_linux.cc", |
| 565 "test/fontconfig_util_linux.h", | 567 "test/fontconfig_util_linux.h", |
| 566 "test/gfx_util.cc", | 568 "test/gfx_util.cc", |
| 567 "test/gfx_util.h", | 569 "test/gfx_util.h", |
| 568 "test/icc_profiles.cc", | 570 "test/icc_profiles.cc", |
| 569 "test/icc_profiles.h", | 571 "test/icc_profiles.h", |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 | 767 |
| 766 fuzzer_test("color_transform_fuzztest") { | 768 fuzzer_test("color_transform_fuzztest") { |
| 767 sources = [ | 769 sources = [ |
| 768 "color_transform_fuzzer.cc", | 770 "color_transform_fuzzer.cc", |
| 769 ] | 771 ] |
| 770 deps = [ | 772 deps = [ |
| 771 ":gfx", | 773 ":gfx", |
| 772 ] | 774 ] |
| 773 libfuzzer_options = [ "max_len=1024" ] | 775 libfuzzer_options = [ "max_len=1024" ] |
| 774 } | 776 } |
| OLD | NEW |