| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 ] | 264 ] |
| 265 | 265 |
| 266 # Text rendering conditions (complicated so separated out). | 266 # Text rendering conditions (complicated so separated out). |
| 267 if (use_aura || is_mac) { | 267 if (use_aura || is_mac) { |
| 268 # Mac doesn't use RenderTextHarfBuzz by default yet. | 268 # Mac doesn't use RenderTextHarfBuzz by default yet. |
| 269 sources += [ | 269 sources += [ |
| 270 "harfbuzz_font_skia.cc", | 270 "harfbuzz_font_skia.cc", |
| 271 "harfbuzz_font_skia.h", | 271 "harfbuzz_font_skia.h", |
| 272 "render_text_harfbuzz.cc", | 272 "render_text_harfbuzz.cc", |
| 273 "render_text_harfbuzz.h", | 273 "render_text_harfbuzz.h", |
| 274 "render_text_harfbuzz_mac.mm", |
| 274 "render_text_mac.h", | 275 "render_text_mac.h", |
| 275 "render_text_mac.mm", | 276 "render_text_mac.mm", |
| 276 "text_utils_skia.cc", | 277 "text_utils_skia.cc", |
| 277 ] | 278 ] |
| 278 | 279 |
| 279 if (!is_ios) { | 280 if (!is_ios) { |
| 280 sources += [ | 281 sources += [ |
| 281 "render_text.cc", | 282 "render_text.cc", |
| 282 "render_text.h", | 283 "render_text.h", |
| 283 ] | 284 ] |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 | 715 |
| 715 fuzzer_test("color_transform_fuzztest") { | 716 fuzzer_test("color_transform_fuzztest") { |
| 716 sources = [ | 717 sources = [ |
| 717 "color_transform_fuzzer.cc", | 718 "color_transform_fuzzer.cc", |
| 718 ] | 719 ] |
| 719 deps = [ | 720 deps = [ |
| 720 ":gfx", | 721 ":gfx", |
| 721 ] | 722 ] |
| 722 libfuzzer_options = [ "max_len=1024" ] | 723 libfuzzer_options = [ "max_len=1024" ] |
| 723 } | 724 } |
| OLD | NEW |