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

Side by Side Diff: net/net_common.gypi

Issue 1154323007: Split network_interfaces.h off of net_utils.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ip_util
Patch Set: address matt's comments Created 5 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
« no previous file with comments | « net/net.gypi ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # This target is included in both 'net' and 'net_small'. 6 # This target is included in both 'net' and 'net_small'.
7 'type': '<(component)', 7 'type': '<(component)',
8 'variables': { 'enable_wexit_time_destructors': 1, }, 8 'variables': { 'enable_wexit_time_destructors': 1, },
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 'target_conditions': [ 386 'target_conditions': [
387 # These source files are excluded by default platform rules, but they 387 # These source files are excluded by default platform rules, but they
388 # are needed in specific cases on other platforms. Re-including them can 388 # are needed in specific cases on other platforms. Re-including them can
389 # only be done in target_conditions as it is evaluated after the 389 # only be done in target_conditions as it is evaluated after the
390 # platform rules. 390 # platform rules.
391 ['OS == "android"', { 391 ['OS == "android"', {
392 'sources/': [ 392 'sources/': [
393 ['include', '^base/platform_mime_util_linux\\.cc$'], 393 ['include', '^base/platform_mime_util_linux\\.cc$'],
394 ['include', '^base/address_tracker_linux\\.cc$'], 394 ['include', '^base/address_tracker_linux\\.cc$'],
395 ['include', '^base/address_tracker_linux\\.h$'], 395 ['include', '^base/address_tracker_linux\\.h$'],
396 ['include', '^base/net_util_linux\\.cc$'], 396 ['include', '^base/network_interfaces_linux\\.cc$'],
397 ['include', '^base/net_util_linux\\.h$'], 397 ['include', '^base/network_interfaces_linux\\.h$'],
398 ], 398 ],
399 }], 399 }],
400 ['OS == "ios"', { 400 ['OS == "ios"', {
401 'sources/': [ 401 'sources/': [
402 ['include', '^base/mac/url_conversions\\.h$'], 402 ['include', '^base/mac/url_conversions\\.h$'],
403 ['include', '^base/mac/url_conversions\\.mm$'], 403 ['include', '^base/mac/url_conversions\\.mm$'],
404 ['include', '^base/net_util_mac\\.cc$'],
405 ['include', '^base/net_util_mac\\.h$'],
406 ['include', '^base/network_change_notifier_mac\\.cc$'], 404 ['include', '^base/network_change_notifier_mac\\.cc$'],
407 ['include', '^base/network_config_watcher_mac\\.cc$'], 405 ['include', '^base/network_config_watcher_mac\\.cc$'],
406 ['include', '^base/network_interfaces_mac\\.cc$'],
407 ['include', '^base/network_interfaces_mac\\.h$'],
408 ['include', '^base/platform_mime_util_mac\\.mm$'], 408 ['include', '^base/platform_mime_util_mac\\.mm$'],
409 # The iOS implementation only partially uses NSS and thus does not 409 # The iOS implementation only partially uses NSS and thus does not
410 # defines |use_nss_certs|. In particular the |USE_NSS_CERTS| 410 # defines |use_nss_certs|. In particular the |USE_NSS_CERTS|
411 # preprocessor definition is not used. The following files are needed 411 # preprocessor definition is not used. The following files are needed
412 # though: 412 # though:
413 ['include', '^cert/cert_verify_proc_nss\\.cc$'], 413 ['include', '^cert/cert_verify_proc_nss\\.cc$'],
414 ['include', '^cert/cert_verify_proc_nss\\.h$'], 414 ['include', '^cert/cert_verify_proc_nss\\.h$'],
415 ['include', '^cert/test_root_certs_nss\\.cc$'], 415 ['include', '^cert/test_root_certs_nss\\.cc$'],
416 ['include', '^cert/x509_util_nss_certs\\.cc$'], 416 ['include', '^cert/x509_util_nss_certs\\.cc$'],
417 ['include', '^cert_net/nss_ocsp\\.cc$'], 417 ['include', '^cert_net/nss_ocsp\\.cc$'],
418 ['include', '^cert_net/nss_ocsp\\.h$'], 418 ['include', '^cert_net/nss_ocsp\\.h$'],
419 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 419 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
420 ['include', '^proxy/proxy_server_mac\\.cc$'], 420 ['include', '^proxy/proxy_server_mac\\.cc$'],
421 ], 421 ],
422 }], 422 }],
423 ], 423 ],
424 } 424 }
OLDNEW
« no previous file with comments | « net/net.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698