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

Side by Side Diff: chrome/common/net/BUILD.gn

Issue 644123002: Componentize renderer side of DNS prefetching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 6
7 # GYP version: chrome/chrome_common.gypi:common_net 7 # GYP version: chrome/chrome_common.gypi:common_net
8 static_library("net") { 8 static_library("net") {
9 sources = [ 9 sources = [
10 "net_error_info.cc", 10 "net_error_info.cc",
11 "net_error_info.h", 11 "net_error_info.h",
12 "net_resource_provider.cc", 12 "net_resource_provider.cc",
13 "net_resource_provider.h", 13 "net_resource_provider.h",
14 "predictor_common.h",
15 "url_util.cc", 14 "url_util.cc",
16 "url_util.h", 15 "url_util.h",
17 "x509_certificate_model.cc", 16 "x509_certificate_model.cc",
18 "x509_certificate_model.h", 17 "x509_certificate_model.h",
19 "x509_certificate_model_nss.cc", 18 "x509_certificate_model_nss.cc",
20 "x509_certificate_model_openssl.cc", 19 "x509_certificate_model_openssl.cc",
21 ] 20 ]
22 21
23 deps = [ 22 deps = [
24 "//base", 23 "//base",
(...skipping 30 matching lines...) Expand all
55 "x509_certificate_model.cc", 54 "x509_certificate_model.cc",
56 "x509_certificate_model_openssl.cc", 55 "x509_certificate_model_openssl.cc",
57 ] 56 ]
58 deps += [ "//third_party/boringssl" ] 57 deps += [ "//third_party/boringssl" ]
59 } 58 }
60 59
61 if (is_win) { 60 if (is_win) {
62 cflags = [ "/wd4267" ] 61 cflags = [ "/wd4267" ]
63 } 62 }
64 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698