Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(493)

Side by Side Diff: third_party/boringssl/BUILD.gn

Issue 2888763005: [boringssl] Use all_dependent_configs for external_config (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698