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

Side by Side Diff: net/net.gyp

Issue 99473012: Enable icu_use_data_file on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: icudtl.dat listed in win/server.rules Created 7 years 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'use_tracing_cache_backend%': 0, 10 'use_tracing_cache_backend%': 0,
(...skipping 2158 matching lines...) Expand 10 before | Expand all | Expand 10 after
2169 'dns/mdns_query_unittest.cc', 2169 'dns/mdns_query_unittest.cc',
2170 'dns/record_parsed_unittest.cc', 2170 'dns/record_parsed_unittest.cc',
2171 'dns/record_rdata_unittest.cc', 2171 'dns/record_rdata_unittest.cc',
2172 ], 2172 ],
2173 }], 2173 }],
2174 [ 'OS == "win"', { 2174 [ 'OS == "win"', {
2175 'sources!': [ 2175 'sources!': [
2176 'dns/dns_config_service_posix_unittest.cc', 2176 'dns/dns_config_service_posix_unittest.cc',
2177 'http/http_auth_gssapi_posix_unittest.cc', 2177 'http/http_auth_gssapi_posix_unittest.cc',
2178 ], 2178 ],
2179 # This is needed to trigger the dll copy step on windows.
2180 # TODO(mark): Specifying this here shouldn't be necessary.
2181 'dependencies': [ 2179 'dependencies': [
2182 '../third_party/icu/icu.gyp:icudata',
2183 '../third_party/nss/nss.gyp:nspr', 2180 '../third_party/nss/nss.gyp:nspr',
2184 '../third_party/nss/nss.gyp:nss', 2181 '../third_party/nss/nss.gyp:nss',
2185 'third_party/nss/ssl.gyp:libssl', 2182 'third_party/nss/ssl.gyp:libssl',
2186 ], 2183 ],
2184 'conditions': [
2185 [ 'icu_use_data_file_flag == 0', {
2186 # This is needed to trigger the dll copy step on windows.
2187 # TODO(mark): Specifying this here shouldn't be necessary.
2188 'dependencies': [
2189 '../third_party/icu/icu.gyp:icudata',
2190 ],
2191 },
2192 ],
2193 ],
2187 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2194 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2188 'msvs_disabled_warnings': [4267, ], 2195 'msvs_disabled_warnings': [4267, ],
2189 }, 2196 },
2190 ], 2197 ],
2191 [ 'OS == "mac"', { 2198 [ 'OS == "mac"', {
2192 'dependencies': [ 2199 'dependencies': [
2193 '../third_party/nss/nss.gyp:nspr', 2200 '../third_party/nss/nss.gyp:nspr',
2194 '../third_party/nss/nss.gyp:nss', 2201 '../third_party/nss/nss.gyp:nss',
2195 'third_party/nss/ssl.gyp:libssl', 2202 'third_party/nss/ssl.gyp:libssl',
2196 ], 2203 ],
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
2275 [ 'use_v8_in_net==1', { 2282 [ 'use_v8_in_net==1', {
2276 'dependencies': [ 2283 'dependencies': [
2277 'net_with_v8', 2284 'net_with_v8',
2278 ], 2285 ],
2279 }, { # else: !use_v8_in_net 2286 }, { # else: !use_v8_in_net
2280 'sources!': [ 2287 'sources!': [
2281 'proxy/proxy_resolver_perftest.cc', 2288 'proxy/proxy_resolver_perftest.cc',
2282 ], 2289 ],
2283 }, 2290 },
2284 ], 2291 ],
2285 # This is needed to trigger the dll copy step on windows. 2292 [ 'OS == "win" and icu_use_data_file_flag == 0', {
2286 # TODO(mark): Specifying this here shouldn't be necessary. 2293 # This is needed to trigger the dll copy step on windows.
2287 [ 'OS == "win"', { 2294 # TODO(mark): Specifying this here shouldn't be necessary.
2288 'dependencies': [ 2295 'dependencies': [
2289 '../third_party/icu/icu.gyp:icudata', 2296 '../third_party/icu/icu.gyp:icudata',
2290 ], 2297 ],
2291 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2298 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2292 'msvs_disabled_warnings': [4267, ], 2299 'msvs_disabled_warnings': [4267, ],
2293 }, 2300 },
2294 ], 2301 ],
2295 ], 2302 ],
2296 }, 2303 },
2297 { 2304 {
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
3088 'net_unittests.isolate', 3095 'net_unittests.isolate',
3089 ], 3096 ],
3090 'sources': [ 3097 'sources': [
3091 'net_unittests.isolate', 3098 'net_unittests.isolate',
3092 ], 3099 ],
3093 }, 3100 },
3094 ], 3101 ],
3095 }], 3102 }],
3096 ], 3103 ],
3097 } 3104 }
OLDNEW
« chrome/tools/build/win/server.rules ('K') | « chrome/tools/build/win/server.rules ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698