| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/linux/pkg_config.gni") | 7 import("//build/config/linux/pkg_config.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 | 10 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "src/hb-ot-layout-common-private.hh", | 94 "src/hb-ot-layout-common-private.hh", |
| 95 "src/hb-ot-layout-gdef-table.hh", | 95 "src/hb-ot-layout-gdef-table.hh", |
| 96 "src/hb-ot-layout-gpos-table.hh", | 96 "src/hb-ot-layout-gpos-table.hh", |
| 97 "src/hb-ot-layout-gsub-table.hh", | 97 "src/hb-ot-layout-gsub-table.hh", |
| 98 "src/hb-ot-layout-gsubgpos-private.hh", | 98 "src/hb-ot-layout-gsubgpos-private.hh", |
| 99 "src/hb-ot-layout-private.hh", | 99 "src/hb-ot-layout-private.hh", |
| 100 "src/hb-ot-layout.cc", | 100 "src/hb-ot-layout.cc", |
| 101 "src/hb-ot-layout.h", | 101 "src/hb-ot-layout.h", |
| 102 "src/hb-ot-map-private.hh", | 102 "src/hb-ot-map-private.hh", |
| 103 "src/hb-ot-map.cc", | 103 "src/hb-ot-map.cc", |
| 104 "src/hb-ot-math.cc", |
| 104 "src/hb-ot-maxp-table.hh", | 105 "src/hb-ot-maxp-table.hh", |
| 105 "src/hb-ot-name-table.hh", | 106 "src/hb-ot-name-table.hh", |
| 106 "src/hb-ot-shape-complex-arabic-fallback.hh", | 107 "src/hb-ot-shape-complex-arabic-fallback.hh", |
| 107 "src/hb-ot-shape-complex-arabic-private.hh", | 108 "src/hb-ot-shape-complex-arabic-private.hh", |
| 108 "src/hb-ot-shape-complex-arabic-table.hh", | 109 "src/hb-ot-shape-complex-arabic-table.hh", |
| 109 "src/hb-ot-shape-complex-arabic.cc", | 110 "src/hb-ot-shape-complex-arabic.cc", |
| 110 "src/hb-ot-shape-complex-default.cc", | 111 "src/hb-ot-shape-complex-default.cc", |
| 111 "src/hb-ot-shape-complex-hangul.cc", | 112 "src/hb-ot-shape-complex-hangul.cc", |
| 112 "src/hb-ot-shape-complex-hebrew.cc", | 113 "src/hb-ot-shape-complex-hebrew.cc", |
| 113 "src/hb-ot-shape-complex-indic-machine.hh", | 114 "src/hb-ot-shape-complex-indic-machine.hh", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 fuzzer_test("harfbuzz_fuzzer") { | 217 fuzzer_test("harfbuzz_fuzzer") { |
| 217 sources = [ | 218 sources = [ |
| 218 "fuzz/harfbuzz_fuzzer.cc", | 219 "fuzz/harfbuzz_fuzzer.cc", |
| 219 ] | 220 ] |
| 220 deps = [ | 221 deps = [ |
| 221 ":harfbuzz-ng", | 222 ":harfbuzz-ng", |
| 222 ] | 223 ] |
| 223 libfuzzer_options = [ "max_len=16800" ] | 224 libfuzzer_options = [ "max_len=16800" ] |
| 224 seed_corpus = "fuzz/seed_corpus" | 225 seed_corpus = "fuzz/seed_corpus" |
| 225 } | 226 } |
| OLD | NEW |