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

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: fix a typo in net.gyp Created 6 years, 11 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 | « chrome/tools/build/win/TESTS ('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 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 2200 matching lines...) Expand 10 before | Expand all | Expand 10 after
2211 'dns/mdns_query_unittest.cc', 2211 'dns/mdns_query_unittest.cc',
2212 'dns/record_parsed_unittest.cc', 2212 'dns/record_parsed_unittest.cc',
2213 'dns/record_rdata_unittest.cc', 2213 'dns/record_rdata_unittest.cc',
2214 ], 2214 ],
2215 }], 2215 }],
2216 [ 'OS == "win"', { 2216 [ 'OS == "win"', {
2217 'sources!': [ 2217 'sources!': [
2218 'dns/dns_config_service_posix_unittest.cc', 2218 'dns/dns_config_service_posix_unittest.cc',
2219 'http/http_auth_gssapi_posix_unittest.cc', 2219 'http/http_auth_gssapi_posix_unittest.cc',
2220 ], 2220 ],
2221 # This is needed to trigger the dll copy step on windows.
2222 # TODO(mark): Specifying this here shouldn't be necessary.
2223 'dependencies': [ 2221 'dependencies': [
2224 '../third_party/icu/icu.gyp:icudata',
2225 '../third_party/nss/nss.gyp:nspr', 2222 '../third_party/nss/nss.gyp:nspr',
2226 '../third_party/nss/nss.gyp:nss', 2223 '../third_party/nss/nss.gyp:nss',
2227 'third_party/nss/ssl.gyp:libssl', 2224 'third_party/nss/ssl.gyp:libssl',
2228 ], 2225 ],
2226 'conditions': [
2227 [ 'icu_use_data_file_flag == 0', {
2228 # This is needed to trigger the dll copy step on windows.
2229 # TODO(mark): Specifying this here shouldn't be necessary.
2230 'dependencies': [
2231 '../third_party/icu/icu.gyp:icudata',
2232 ],
2233 }],
2234 ],
2229 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2235 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2230 'msvs_disabled_warnings': [4267, ], 2236 'msvs_disabled_warnings': [4267, ],
2231 }, 2237 },
2232 ], 2238 ],
2233 [ 'OS == "mac"', { 2239 [ 'OS == "mac"', {
2234 'dependencies': [ 2240 'dependencies': [
2235 '../third_party/nss/nss.gyp:nspr', 2241 '../third_party/nss/nss.gyp:nspr',
2236 '../third_party/nss/nss.gyp:nss', 2242 '../third_party/nss/nss.gyp:nss',
2237 'third_party/nss/ssl.gyp:libssl', 2243 'third_party/nss/ssl.gyp:libssl',
2238 ], 2244 ],
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
2317 [ 'use_v8_in_net==1', { 2323 [ 'use_v8_in_net==1', {
2318 'dependencies': [ 2324 'dependencies': [
2319 'net_with_v8', 2325 'net_with_v8',
2320 ], 2326 ],
2321 }, { # else: !use_v8_in_net 2327 }, { # else: !use_v8_in_net
2322 'sources!': [ 2328 'sources!': [
2323 'proxy/proxy_resolver_perftest.cc', 2329 'proxy/proxy_resolver_perftest.cc',
2324 ], 2330 ],
2325 }, 2331 },
2326 ], 2332 ],
2327 # This is needed to trigger the dll copy step on windows.
2328 # TODO(mark): Specifying this here shouldn't be necessary.
2329 [ 'OS == "win"', { 2333 [ 'OS == "win"', {
2330 'dependencies': [ 2334 'conditions': [
2331 '../third_party/icu/icu.gyp:icudata', 2335 [ 'icu_use_data_file_flag == 0', {
2332 ], 2336 # This is needed to trigger the dll copy step on windows.
2333 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 2337 # TODO(mark): Specifying this here shouldn't be necessary.
2334 'msvs_disabled_warnings': [4267, ], 2338 'dependencies': [
2335 }, 2339 '../third_party/icu/icu.gyp:icudata',
2336 ], 2340 ],
2341 }],
2342 ],
2343 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2344 'msvs_disabled_warnings': [4267, ],
wtc 2014/01/21 22:13:45 Nit: the indentation of lines 2334-2344 probably s
2345 }],
2337 ], 2346 ],
2338 }, 2347 },
2339 { 2348 {
2340 'target_name': 'net_test_support', 2349 'target_name': 'net_test_support',
2341 'type': 'static_library', 2350 'type': 'static_library',
2342 'dependencies': [ 2351 'dependencies': [
2343 '../base/base.gyp:base', 2352 '../base/base.gyp:base',
2344 '../base/base.gyp:test_support_base', 2353 '../base/base.gyp:test_support_base',
2345 '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util', 2354 '../net/tools/tld_cleanup/tld_cleanup.gyp:tld_cleanup_util',
2346 '../testing/gtest.gyp:gtest', 2355 '../testing/gtest.gyp:gtest',
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
3118 'net_unittests.isolate', 3127 'net_unittests.isolate',
3119 ], 3128 ],
3120 'sources': [ 3129 'sources': [
3121 'net_unittests.isolate', 3130 'net_unittests.isolate',
3122 ], 3131 ],
3123 }, 3132 },
3124 ], 3133 ],
3125 }], 3134 }],
3126 ], 3135 ],
3127 } 3136 }
OLDNEW
« no previous file with comments | « chrome/tools/build/win/TESTS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698