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

Side by Side Diff: net/BUILD.gn

Issue 305013009: Handle more types of gypis in gypi_to_gn. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | « build/gypi_to_gn.py ('k') | 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 (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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 "//base:i18n", 90 "//base:i18n",
91 "//base/third_party/dynamic_annotations", 91 "//base/third_party/dynamic_annotations",
92 "//crypto", 92 "//crypto",
93 "//crypto:platform", 93 "//crypto:platform",
94 "//net/base/registry_controlled_domains:registry_controlled_domains", 94 "//net/base/registry_controlled_domains:registry_controlled_domains",
95 "//sdch", 95 "//sdch",
96 "//third_party/icu", 96 "//third_party/icu",
97 "//third_party/zlib", 97 "//third_party/zlib",
98 "//url", 98 "//url",
99 ] 99 ]
100 forward_dependent_configs_from = [
101 "//crypto",
102 "//crypto:platform"
103 ]
Dirk Pranke 2014/06/02 18:56:53 Ah, didn't know about this ... nice.
100 104
101 if (use_kerberos) { 105 if (use_kerberos) {
102 defines += [ "USE_KERBEROS" ] 106 defines += [ "USE_KERBEROS" ]
103 if (is_android) { 107 if (is_android) {
104 include_dirs += [ "/usr/include/kerberosV" ] 108 include_dirs += [ "/usr/include/kerberosV" ]
105 } 109 }
106 } else { 110 } else {
107 sources -= [ 111 sources -= [
108 "http/http_auth_gssapi_posix.cc", 112 "http/http_auth_gssapi_posix.cc",
109 "http/http_auth_gssapi_posix.h", 113 "http/http_auth_gssapi_posix.h",
(...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 1021
1018 if (is_android || is_linux) { 1022 if (is_android || is_linux) {
1019 executable("disk_cache_memory_test") { 1023 executable("disk_cache_memory_test") {
1020 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ] 1024 sources = [ "tools/disk_cache_memory_test/disk_cache_memory_test.cc" ]
1021 deps = [ 1025 deps = [
1022 ":net", 1026 ":net",
1023 "//base", 1027 "//base",
1024 ] 1028 ]
1025 } 1029 }
1026 } 1030 }
OLDNEW
« no previous file with comments | « build/gypi_to_gn.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698