| 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 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 697 "oleacc.lib", | 697 "oleacc.lib", |
| 698 ] | 698 ] |
| 699 } | 699 } |
| 700 | 700 |
| 701 if (!is_ios) { | 701 if (!is_ios) { |
| 702 deps += [ | 702 deps += [ |
| 703 "//mojo/edk/system", | 703 "//mojo/edk/system", |
| 704 "//mojo/public/cpp/bindings", | 704 "//mojo/public/cpp/bindings", |
| 705 "//ui/gfx/geometry/mojo:unit_test", | 705 "//ui/gfx/geometry/mojo:unit_test", |
| 706 "//ui/gfx/mojo:test_interfaces", | 706 "//ui/gfx/mojo:test_interfaces", |
| 707 "//ui/gfx/range/mojo:unit_test", |
| 707 ] | 708 ] |
| 708 } | 709 } |
| 709 } | 710 } |
| 710 | 711 |
| 711 if (is_android) { | 712 if (is_android) { |
| 712 generate_jni("gfx_jni_headers") { | 713 generate_jni("gfx_jni_headers") { |
| 713 sources = [ | 714 sources = [ |
| 714 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 715 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 715 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 716 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 716 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 717 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 717 ] | 718 ] |
| 718 jni_package = "gfx" | 719 jni_package = "gfx" |
| 719 } | 720 } |
| 720 } | 721 } |
| 721 | 722 |
| 722 fuzzer_test("color_transform_fuzztest") { | 723 fuzzer_test("color_transform_fuzztest") { |
| 723 sources = [ | 724 sources = [ |
| 724 "color_transform_fuzzer.cc", | 725 "color_transform_fuzzer.cc", |
| 725 ] | 726 ] |
| 726 deps = [ | 727 deps = [ |
| 727 ":gfx", | 728 ":gfx", |
| 728 ] | 729 ] |
| 729 libfuzzer_options = [ "max_len=1024" ] | 730 libfuzzer_options = [ "max_len=1024" ] |
| 730 } | 731 } |
| OLD | NEW |