| 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 "//third_party/icu", | 253 "//third_party/icu", |
| 254 "//ui/gfx/geometry", | 254 "//ui/gfx/geometry", |
| 255 "//ui/gfx/range", | 255 "//ui/gfx/range", |
| 256 ] | 256 ] |
| 257 deps = [ | 257 deps = [ |
| 258 ":gfx_export", | 258 ":gfx_export", |
| 259 "//base", | 259 "//base", |
| 260 "//base:base_static", | 260 "//base:base_static", |
| 261 "//base:i18n", | 261 "//base:i18n", |
| 262 "//base/third_party/dynamic_annotations", | 262 "//base/third_party/dynamic_annotations", |
| 263 "//cc/paint", |
| 263 "//skia", | 264 "//skia", |
| 264 "//third_party/libpng", | 265 "//third_party/libpng", |
| 265 "//third_party/qcms", | 266 "//third_party/qcms", |
| 266 "//third_party/zlib", | 267 "//third_party/zlib", |
| 267 ] | 268 ] |
| 268 | 269 |
| 269 # Text rendering conditions (complicated so separated out). | 270 # Text rendering conditions (complicated so separated out). |
| 270 if (use_aura || is_mac) { | 271 if (use_aura || is_mac) { |
| 271 # Mac doesn't use RenderTextHarfBuzz by default yet. | 272 # Mac doesn't use RenderTextHarfBuzz by default yet. |
| 272 sources += [ | 273 sources += [ |
| (...skipping 470 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 |