| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 | 242 |
| 243 # This is part of the gfx component in the component build. | 243 # This is part of the gfx component in the component build. |
| 244 defines = [ "GFX_IMPLEMENTATION" ] | 244 defines = [ "GFX_IMPLEMENTATION" ] |
| 245 | 245 |
| 246 public_deps = [ | 246 public_deps = [ |
| 247 ":color_space", | 247 ":color_space", |
| 248 ":memory_buffer_sources", | 248 ":memory_buffer_sources", |
| 249 ":native_widget_types", | 249 ":native_widget_types", |
| 250 ":selection_bound_sources", | 250 ":selection_bound_sources", |
| 251 "//base", | 251 "//base", |
| 252 "//cc/paint", |
| 252 "//skia", | 253 "//skia", |
| 253 "//third_party/icu", | 254 "//third_party/icu", |
| 254 "//ui/gfx/geometry", | 255 "//ui/gfx/geometry", |
| 255 "//ui/gfx/range", | 256 "//ui/gfx/range", |
| 256 ] | 257 ] |
| 257 deps = [ | 258 deps = [ |
| 258 ":gfx_export", | 259 ":gfx_export", |
| 259 "//base", | 260 "//base", |
| 260 "//base:base_static", | 261 "//base:base_static", |
| 261 "//base:i18n", | 262 "//base:i18n", |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 | 744 |
| 744 fuzzer_test("color_transform_fuzztest") { | 745 fuzzer_test("color_transform_fuzztest") { |
| 745 sources = [ | 746 sources = [ |
| 746 "color_transform_fuzzer.cc", | 747 "color_transform_fuzzer.cc", |
| 747 ] | 748 ] |
| 748 deps = [ | 749 deps = [ |
| 749 ":gfx", | 750 ":gfx", |
| 750 ] | 751 ] |
| 751 libfuzzer_options = [ "max_len=1024" ] | 752 libfuzzer_options = [ "max_len=1024" ] |
| 752 } | 753 } |
| OLD | NEW |