| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 } | 105 } |
| 106 } | 106 } |
| 107 } | 107 } |
| 108 | 108 |
| 109 component("boringssl") { | 109 component("boringssl") { |
| 110 sources = all_sources | 110 sources = all_sources |
| 111 deps = [ | 111 deps = [ |
| 112 ":boringssl_asm", | 112 ":boringssl_asm", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 public_configs = [ ":external_config" ] | 115 all_dependent_configs = [ ":external_config" ] |
| 116 configs += [ ":internal_config" ] | 116 configs += [ ":internal_config" ] |
| 117 | 117 |
| 118 configs -= [ "//build/config/compiler:chromium_code" ] | 118 configs -= [ "//build/config/compiler:chromium_code" ] |
| 119 configs += [ "//build/config/compiler:no_chromium_code" ] | 119 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 120 | 120 |
| 121 if (is_nacl) { | 121 if (is_nacl) { |
| 122 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 122 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 123 } | 123 } |
| 124 } | 124 } |
| 125 | 125 |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 fuzzer_test("boringssl_server_no_fuzzer_mode_fuzzer") { | 311 fuzzer_test("boringssl_server_no_fuzzer_mode_fuzzer") { |
| 312 sources = [ | 312 sources = [ |
| 313 "src/fuzz/server.cc", | 313 "src/fuzz/server.cc", |
| 314 ] | 314 ] |
| 315 deps = [ | 315 deps = [ |
| 316 ":boringssl_fuzzer_no_fuzzer_mode", | 316 ":boringssl_fuzzer_no_fuzzer_mode", |
| 317 ] | 317 ] |
| 318 seed_corpus = "src/fuzz/server_corpus_no_fuzzer_mode" | 318 seed_corpus = "src/fuzz/server_corpus_no_fuzzer_mode" |
| 319 } | 319 } |
| 320 } | 320 } |
| OLD | NEW |