| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 "//third_party/icu", | 254 "//third_party/icu", |
| 255 "//ui/gfx/geometry", | 255 "//ui/gfx/geometry", |
| 256 "//ui/gfx/range", | 256 "//ui/gfx/range", |
| 257 ] | 257 ] |
| 258 deps = [ | 258 deps = [ |
| 259 ":gfx_export", | 259 ":gfx_export", |
| 260 "//base", | 260 "//base", |
| 261 "//base:base_static", | 261 "//base:base_static", |
| 262 "//base:i18n", | 262 "//base:i18n", |
| 263 "//base/third_party/dynamic_annotations", | 263 "//base/third_party/dynamic_annotations", |
| 264 "//cc/paint", |
| 264 "//skia", | 265 "//skia", |
| 265 "//third_party/libpng", | 266 "//third_party/libpng", |
| 266 "//third_party/qcms", | 267 "//third_party/qcms", |
| 267 "//third_party/zlib", | 268 "//third_party/zlib", |
| 268 ] | 269 ] |
| 269 | 270 |
| 270 # Text rendering conditions (complicated so separated out). | 271 # Text rendering conditions (complicated so separated out). |
| 271 if (use_aura || is_mac) { | 272 if (use_aura || is_mac) { |
| 272 # Mac doesn't use RenderTextHarfBuzz by default yet. | 273 # Mac doesn't use RenderTextHarfBuzz by default yet. |
| 273 sources += [ | 274 sources += [ |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 | 745 |
| 745 fuzzer_test("color_transform_fuzztest") { | 746 fuzzer_test("color_transform_fuzztest") { |
| 746 sources = [ | 747 sources = [ |
| 747 "color_transform_fuzzer.cc", | 748 "color_transform_fuzzer.cc", |
| 748 ] | 749 ] |
| 749 deps = [ | 750 deps = [ |
| 750 ":gfx", | 751 ":gfx", |
| 751 ] | 752 ] |
| 752 libfuzzer_options = [ "max_len=1024" ] | 753 libfuzzer_options = [ "max_len=1024" ] |
| 753 } | 754 } |
| OLD | NEW |