| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "src/hb-ot-shape-normalize-private.hh", | 131 "src/hb-ot-shape-normalize-private.hh", |
| 132 "src/hb-ot-shape-normalize.cc", | 132 "src/hb-ot-shape-normalize.cc", |
| 133 "src/hb-ot-shape-private.hh", | 133 "src/hb-ot-shape-private.hh", |
| 134 "src/hb-ot-shape.cc", | 134 "src/hb-ot-shape.cc", |
| 135 "src/hb-ot-shape.h", | 135 "src/hb-ot-shape.h", |
| 136 "src/hb-ot-tag.cc", | 136 "src/hb-ot-tag.cc", |
| 137 "src/hb-ot-tag.h", | 137 "src/hb-ot-tag.h", |
| 138 "src/hb-ot-var-avar-table.hh", | 138 "src/hb-ot-var-avar-table.hh", |
| 139 "src/hb-ot-var-fvar-table.hh", | 139 "src/hb-ot-var-fvar-table.hh", |
| 140 "src/hb-ot-var-hvar-table.hh", | 140 "src/hb-ot-var-hvar-table.hh", |
| 141 "src/hb-ot-var-mvar-table.hh", |
| 141 "src/hb-ot-var.cc", | 142 "src/hb-ot-var.cc", |
| 142 "src/hb-ot-var.h", | 143 "src/hb-ot-var.h", |
| 143 "src/hb-ot.h", | 144 "src/hb-ot.h", |
| 144 "src/hb-private.hh", | 145 "src/hb-private.hh", |
| 145 "src/hb-set-private.hh", | 146 "src/hb-set-private.hh", |
| 146 "src/hb-set.cc", | 147 "src/hb-set.cc", |
| 147 "src/hb-set.h", | 148 "src/hb-set.h", |
| 148 "src/hb-shape-plan-private.hh", | 149 "src/hb-shape-plan-private.hh", |
| 149 "src/hb-shape-plan.cc", | 150 "src/hb-shape-plan.cc", |
| 150 "src/hb-shape-plan.h", | 151 "src/hb-shape-plan.h", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 fuzzer_test("harfbuzz_fuzzer") { | 225 fuzzer_test("harfbuzz_fuzzer") { |
| 225 sources = [ | 226 sources = [ |
| 226 "fuzz/harfbuzz_fuzzer.cc", | 227 "fuzz/harfbuzz_fuzzer.cc", |
| 227 ] | 228 ] |
| 228 deps = [ | 229 deps = [ |
| 229 ":harfbuzz-ng", | 230 ":harfbuzz-ng", |
| 230 ] | 231 ] |
| 231 libfuzzer_options = [ "max_len=16800" ] | 232 libfuzzer_options = [ "max_len=16800" ] |
| 232 seed_corpus = "fuzz/seed_corpus" | 233 seed_corpus = "fuzz/seed_corpus" |
| 233 } | 234 } |
| OLD | NEW |