Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 ], | |
| 2235 ], | |
| 2229 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 2236 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2230 'msvs_disabled_warnings': [4267, ], | 2237 'msvs_disabled_warnings': [4267, ], |
| 2231 }, | 2238 }, |
| 2232 ], | 2239 ], |
| 2233 [ 'OS == "mac"', { | 2240 [ 'OS == "mac"', { |
| 2234 'dependencies': [ | 2241 'dependencies': [ |
| 2235 '../third_party/nss/nss.gyp:nspr', | 2242 '../third_party/nss/nss.gyp:nspr', |
| 2236 '../third_party/nss/nss.gyp:nss', | 2243 '../third_party/nss/nss.gyp:nss', |
| 2237 'third_party/nss/ssl.gyp:libssl', | 2244 'third_party/nss/ssl.gyp:libssl', |
| 2238 ], | 2245 ], |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2317 [ 'use_v8_in_net==1', { | 2324 [ 'use_v8_in_net==1', { |
| 2318 'dependencies': [ | 2325 'dependencies': [ |
| 2319 'net_with_v8', | 2326 'net_with_v8', |
| 2320 ], | 2327 ], |
| 2321 }, { # else: !use_v8_in_net | 2328 }, { # else: !use_v8_in_net |
| 2322 'sources!': [ | 2329 'sources!': [ |
| 2323 'proxy/proxy_resolver_perftest.cc', | 2330 'proxy/proxy_resolver_perftest.cc', |
| 2324 ], | 2331 ], |
| 2325 }, | 2332 }, |
| 2326 ], | 2333 ], |
| 2327 # This is needed to trigger the dll copy step on windows. | 2334 [ 'OS == "win" and icu_use_data_file_flag == 0', { |
| 2328 # TODO(mark): Specifying this here shouldn't be necessary. | 2335 # This is needed to trigger the dll copy step on windows. |
| 2329 [ 'OS == "win"', { | 2336 # TODO(mark): Specifying this here shouldn't be necessary. |
| 2330 'dependencies': [ | 2337 'dependencies': [ |
| 2331 '../third_party/icu/icu.gyp:icudata', | 2338 '../third_party/icu/icu.gyp:icudata', |
| 2332 ], | 2339 ], |
| 2333 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 2340 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 2334 'msvs_disabled_warnings': [4267, ], | 2341 'msvs_disabled_warnings': [4267, ], |
|
wtc
2014/01/18 19:43:43
Jungshik: I am afraid that your change here is wro
jungshik at Google
2014/01/21 22:06:35
Thank you for catching it. Fixed it. Can you take
| |
| 2335 }, | 2342 }, |
| 2336 ], | 2343 ], |
| 2337 ], | 2344 ], |
| 2338 }, | 2345 }, |
| 2339 { | 2346 { |
| 2340 'target_name': 'net_test_support', | 2347 'target_name': 'net_test_support', |
| 2341 'type': 'static_library', | 2348 'type': 'static_library', |
| 2342 'dependencies': [ | 2349 'dependencies': [ |
| 2343 '../base/base.gyp:base', | 2350 '../base/base.gyp:base', |
| 2344 '../base/base.gyp:test_support_base', | 2351 '../base/base.gyp:test_support_base', |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3118 'net_unittests.isolate', | 3125 'net_unittests.isolate', |
| 3119 ], | 3126 ], |
| 3120 'sources': [ | 3127 'sources': [ |
| 3121 'net_unittests.isolate', | 3128 'net_unittests.isolate', |
| 3122 ], | 3129 ], |
| 3123 }, | 3130 }, |
| 3124 ], | 3131 ], |
| 3125 }], | 3132 }], |
| 3126 ], | 3133 ], |
| 3127 } | 3134 } |
| OLD | NEW |