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

Side by Side Diff: net/BUILD.gn

Issue 1832203002: Adding nist-pkits data files for iOS OpenSSL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 "//testing/gtest", 1429 "//testing/gtest",
1430 "//third_party/zlib", 1430 "//third_party/zlib",
1431 "//url", 1431 "//url",
1432 ] 1432 ]
1433 1433
1434 data = [ 1434 data = [
1435 "data/", 1435 "data/",
1436 ] 1436 ]
1437 data_deps = [] 1437 data_deps = []
1438 1438
1439 if (!is_ios) { 1439 if (use_openssl) {
1440 data_deps += [ "third_party/nist-pkits/" ] 1440 data_deps += [ "third_party/nist-pkits/" ]
1441 } 1441 }
1442 1442
1443 if (is_linux || is_mac || is_win) { 1443 if (is_linux || is_mac || is_win) {
1444 deps += [ 1444 deps += [
1445 "//third_party/pyftpdlib/", 1445 "//third_party/pyftpdlib/",
1446 "//third_party/pywebsocket/", 1446 "//third_party/pywebsocket/",
1447 "//third_party/tlslite/", 1447 "//third_party/tlslite/",
1448 ] 1448 ]
1449 data_deps += [ 1449 data_deps += [
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") { 1917 fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
1918 sources = [ 1918 sources = [
1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc", 1919 "quic/quic_crypto_framer_parse_message_fuzzer.cc",
1920 ] 1920 ]
1921 deps = [ 1921 deps = [
1922 ":net_fuzzer_test_support", 1922 ":net_fuzzer_test_support",
1923 "//base", 1923 "//base",
1924 "//net", 1924 "//net",
1925 ] 1925 ]
1926 } 1926 }
OLDNEW
« no previous file with comments | « no previous file | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698