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

Side by Side Diff: net/BUILD.gn

Issue 270363003: Reduce footprint of registry controlled domain table (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More review feedback Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | net/base/registry_controlled_domains/BUILD.gn » ('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/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 # doesn't seem to be set in the regular builds, so we're skipping this 75 # doesn't seem to be set in the regular builds, so we're skipping this
76 # capability here. 76 # capability here.
77 "DLOPEN_KERBEROS", 77 "DLOPEN_KERBEROS",
78 "NET_IMPLEMENTATION" 78 "NET_IMPLEMENTATION"
79 ] 79 ]
80 configs += [ ":net_win_size_truncation" ] 80 configs += [ ":net_win_size_truncation" ]
81 direct_dependent_configs = [ ":net_config" ] 81 direct_dependent_configs = [ ":net_config" ]
82 include_dirs = [] 82 include_dirs = []
83 83
84 deps = [ 84 deps = [
85 ":net_resources", 85 ":net_resources",
86 "//base", 86 "//base",
87 "//base:i18n", 87 "//base:i18n",
88 "//base/third_party/dynamic_annotations", 88 "//base/third_party/dynamic_annotations",
89 "//crypto", 89 "//crypto",
90 "//crypto:platform", 90 "//crypto:platform",
91 "//net/base/registry_controlled_domains:registry_controlled_domains",
91 "//sdch", 92 "//sdch",
92 "//third_party/icu", 93 "//third_party/icu",
93 "//third_party/zlib", 94 "//third_party/zlib",
94 "//url", 95 "//url",
95 ] 96 ]
96 97
97 if (use_kerberos) { 98 if (use_kerberos) {
98 defines += [ "USE_KERBEROS" ] 99 defines += [ "USE_KERBEROS" ]
99 if (is_android) { 100 if (is_android) {
100 include_dirs += [ "/usr/include/kerberosV" ] 101 include_dirs += [ "/usr/include/kerberosV" ]
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 944
944 if (is_android || is_linux) { 945 if (is_android || is_linux) {
945 executable("disk_cache_memory_test") { 946 executable("disk_cache_memory_test") {
946 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] 947 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ]
947 deps = [ 948 deps = [
948 ":net", 949 ":net",
949 "//base", 950 "//base",
950 ] 951 ]
951 } 952 }
952 } 953 }
OLDNEW
« no previous file with comments | « no previous file | net/base/registry_controlled_domains/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698