| 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/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build_overrides/build.gni") | 7 import("//build_overrides/build.gni") |
| 8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("BUILD.generated.gni") | 9 import("BUILD.generated.gni") |
| 10 import("BUILD.generated_tests.gni") | 10 import("BUILD.generated_tests.gni") |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 } else if ("pkcs8" == fuzzer) { | 196 } else if ("pkcs8" == fuzzer) { |
| 197 libfuzzer_options = [ "max_len=2048" ] | 197 libfuzzer_options = [ "max_len=2048" ] |
| 198 } else if ("privkey" == fuzzer) { | 198 } else if ("privkey" == fuzzer) { |
| 199 libfuzzer_options = [ "max_len=2048" ] | 199 libfuzzer_options = [ "max_len=2048" ] |
| 200 } else if ("read_pem" == fuzzer) { | 200 } else if ("read_pem" == fuzzer) { |
| 201 libfuzzer_options = [ "max_len=512" ] | 201 libfuzzer_options = [ "max_len=512" ] |
| 202 } else if ("server" == fuzzer) { | 202 } else if ("server" == fuzzer) { |
| 203 libfuzzer_options = [ "max_len=4096" ] | 203 libfuzzer_options = [ "max_len=4096" ] |
| 204 } else if ("spki" == fuzzer) { | 204 } else if ("spki" == fuzzer) { |
| 205 libfuzzer_options = [ "max_len=1024" ] | 205 libfuzzer_options = [ "max_len=1024" ] |
| 206 } else if ("ssl_ctx_api" == fuzzer) { |
| 207 libfuzzer_options = [ "max_len=256" ] |
| 206 } | 208 } |
| 207 } | 209 } |
| 208 } | 210 } |
| 209 } | 211 } |
| OLD | NEW |