| OLD | NEW |
| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 'sources!': [ | 81 'sources!': [ |
| 82 'disk_cache/blockfile/mapped_file_posix.cc', | 82 'disk_cache/blockfile/mapped_file_posix.cc', |
| 83 ], | 83 ], |
| 84 }, { # else | 84 }, { # else |
| 85 'sources!': [ | 85 'sources!': [ |
| 86 'disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc', | 86 'disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc', |
| 87 ], | 87 ], |
| 88 }], | 88 }], |
| 89 ['disable_brotli_support!=1', { |
| 90 'dependencies': [ |
| 91 '../third_party/brotli/brotli.gyp:brotli', |
| 92 ], |
| 93 }], |
| 89 ['disable_file_support!=1', { | 94 ['disable_file_support!=1', { |
| 90 # TODO(mmenke): Should probably get rid of the dependency on | 95 # TODO(mmenke): Should probably get rid of the dependency on |
| 91 # net_resources in this case (It's used in net_util, to format | 96 # net_resources in this case (It's used in net_util, to format |
| 92 # directory listings. Also used outside of net/). | 97 # directory listings. Also used outside of net/). |
| 93 'sources': ['<@(net_file_support_sources)'] | 98 'sources': ['<@(net_file_support_sources)'] |
| 94 }], | 99 }], |
| 95 ['disable_ftp_support!=1', { | 100 ['disable_ftp_support!=1', { |
| 96 'sources': ['<@(net_ftp_support_sources)'] | 101 'sources': ['<@(net_ftp_support_sources)'] |
| 97 }], | 102 }], |
| 98 ['enable_built_in_dns==1', { | 103 ['enable_built_in_dns==1', { |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 ['include', '^cert/test_root_certs_nss\\.cc$'], | 407 ['include', '^cert/test_root_certs_nss\\.cc$'], |
| 403 ['include', '^cert/x509_util_nss_certs\\.cc$'], | 408 ['include', '^cert/x509_util_nss_certs\\.cc$'], |
| 404 ['include', '^cert_net/nss_ocsp\\.cc$'], | 409 ['include', '^cert_net/nss_ocsp\\.cc$'], |
| 405 ['include', '^cert_net/nss_ocsp\\.h$'], | 410 ['include', '^cert_net/nss_ocsp\\.h$'], |
| 406 ['include', '^proxy/proxy_resolver_mac\\.cc$'], | 411 ['include', '^proxy/proxy_resolver_mac\\.cc$'], |
| 407 ['include', '^proxy/proxy_server_mac\\.cc$'], | 412 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 408 ], | 413 ], |
| 409 }], | 414 }], |
| 410 ], | 415 ], |
| 411 } | 416 } |
| OLD | NEW |