| 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 testonly = true | 519 testonly = true |
| 520 sources = [ | 520 sources = [ |
| 521 "image/image_unittest_util.cc", | 521 "image/image_unittest_util.cc", |
| 522 "image/image_unittest_util.h", | 522 "image/image_unittest_util.h", |
| 523 "image/image_unittest_util_ios.mm", | 523 "image/image_unittest_util_ios.mm", |
| 524 "image/image_unittest_util_mac.mm", | 524 "image/image_unittest_util_mac.mm", |
| 525 "test/fontconfig_util_linux.cc", | 525 "test/fontconfig_util_linux.cc", |
| 526 "test/fontconfig_util_linux.h", | 526 "test/fontconfig_util_linux.h", |
| 527 "test/gfx_util.cc", | 527 "test/gfx_util.cc", |
| 528 "test/gfx_util.h", | 528 "test/gfx_util.h", |
| 529 "test/render_text_test_api.cc", |
| 530 "test/render_text_test_api.h", |
| 529 "test/ui_cocoa_test_helper.h", | 531 "test/ui_cocoa_test_helper.h", |
| 530 "test/ui_cocoa_test_helper.mm", | 532 "test/ui_cocoa_test_helper.mm", |
| 531 ] | 533 ] |
| 532 | 534 |
| 533 public_deps = [ | 535 public_deps = [ |
| 534 ":gfx", | 536 ":gfx", |
| 535 ] | 537 ] |
| 536 | 538 |
| 537 deps = [ | 539 deps = [ |
| 538 "//base", | 540 "//base", |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 | 723 |
| 722 fuzzer_test("color_transform_fuzztest") { | 724 fuzzer_test("color_transform_fuzztest") { |
| 723 sources = [ | 725 sources = [ |
| 724 "color_transform_fuzzer.cc", | 726 "color_transform_fuzzer.cc", |
| 725 ] | 727 ] |
| 726 deps = [ | 728 deps = [ |
| 727 ":gfx", | 729 ":gfx", |
| 728 ] | 730 ] |
| 729 libfuzzer_options = [ "max_len=1024" ] | 731 libfuzzer_options = [ "max_len=1024" ] |
| 730 } | 732 } |
| OLD | NEW |