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

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: combine 2 conditions into one in base.gyp 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 2173 matching lines...) Expand 10 before | Expand all | Expand 10 after
2184 'dns/mdns_query_unittest.cc', 2184 'dns/mdns_query_unittest.cc',
2185 'dns/record_parsed_unittest.cc', 2185 'dns/record_parsed_unittest.cc',
2186 'dns/record_rdata_unittest.cc', 2186 'dns/record_rdata_unittest.cc',
2187 ], 2187 ],
2188 }], 2188 }],
2189 [ 'OS == "win"', { 2189 [ 'OS == "win"', {
2190 'sources!': [ 2190 'sources!': [
2191 'dns/dns_config_service_posix_unittest.cc', 2191 'dns/dns_config_service_posix_unittest.cc',
2192 'http/http_auth_gssapi_posix_unittest.cc', 2192 'http/http_auth_gssapi_posix_unittest.cc',
2193 ], 2193 ],
2194 # This is needed to trigger the dll copy step on windows.
2195 # TODO(mark): Specifying this here shouldn't be necessary.
2196 'dependencies': [ 2194 'dependencies': [
2197 '../third_party/icu/icu.gyp:icudata',
2198 '../third_party/nss/nss.gyp:nspr', 2195 '../third_party/nss/nss.gyp:nspr',
2199 '../third_party/nss/nss.gyp:nss', 2196 '../third_party/nss/nss.gyp:nss',
2200 'third_party/nss/ssl.gyp:libssl', 2197 'third_party/nss/ssl.gyp:libssl',
2201 ], 2198 ],
2199 'conditions': [
2200 [ 'icu_use_data_file_flag == 0', {
2201 # This is needed to trigger the dll copy step on windows.
2202 # TODO(mark): Specifying this here shouldn't be necessary.
2203 'dependencies': [
2204 '../third_party/icu/icu.gyp:icudata',
2205 ],
2206 },
2207 ],
2208 ],
2202 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2209 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2203 'msvs_disabled_warnings': [4267, ], 2210 'msvs_disabled_warnings': [4267, ],
2204 }, 2211 },
2205 ], 2212 ],
2206 [ 'OS == "mac"', { 2213 [ 'OS == "mac"', {
2207 'dependencies': [ 2214 'dependencies': [
2208 '../third_party/nss/nss.gyp:nspr', 2215 '../third_party/nss/nss.gyp:nspr',
2209 '../third_party/nss/nss.gyp:nss', 2216 '../third_party/nss/nss.gyp:nss',
2210 'third_party/nss/ssl.gyp:libssl', 2217 'third_party/nss/ssl.gyp:libssl',
2211 ], 2218 ],
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
2290 [ 'use_v8_in_net==1', { 2297 [ 'use_v8_in_net==1', {
2291 'dependencies': [ 2298 'dependencies': [
2292 'net_with_v8', 2299 'net_with_v8',
2293 ], 2300 ],
2294 }, { # else: !use_v8_in_net 2301 }, { # else: !use_v8_in_net
2295 'sources!': [ 2302 'sources!': [
2296 'proxy/proxy_resolver_perftest.cc', 2303 'proxy/proxy_resolver_perftest.cc',
2297 ], 2304 ],
2298 }, 2305 },
2299 ], 2306 ],
2300 # This is needed to trigger the dll copy step on windows. 2307 [ 'OS == "win" and icu_use_data_file_flag == 0', {
2301 # TODO(mark): Specifying this here shouldn't be necessary. 2308 # This is needed to trigger the dll copy step on windows.
2302 [ 'OS == "win"', { 2309 # TODO(mark): Specifying this here shouldn't be necessary.
2303 'dependencies': [ 2310 'dependencies': [
2304 '../third_party/icu/icu.gyp:icudata', 2311 '../third_party/icu/icu.gyp:icudata',
2305 ], 2312 ],
2306 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2313 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2307 'msvs_disabled_warnings': [4267, ], 2314 'msvs_disabled_warnings': [4267, ],
2308 }, 2315 },
2309 ], 2316 ],
2310 ], 2317 ],
2311 }, 2318 },
2312 { 2319 {
(...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after
3089 'net_unittests.isolate', 3096 'net_unittests.isolate',
3090 ], 3097 ],
3091 'sources': [ 3098 'sources': [
3092 'net_unittests.isolate', 3099 'net_unittests.isolate',
3093 ], 3100 ],
3094 }, 3101 },
3095 ], 3102 ],
3096 }], 3103 }],
3097 ], 3104 ],
3098 } 3105 }
OLDNEW
« chrome/tools/build/win/FILES.cfg ('K') | « chrome/tools/build/win/TESTS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698