| 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 'sources': ['<@(net_brotli_support_sources)'], |
| 91 'dependencies': [ |
| 92 '../third_party/brotli/brotli.gyp:brotli', |
| 93 ], |
| 94 }], |
| 89 ['disable_file_support!=1', { | 95 ['disable_file_support!=1', { |
| 90 # TODO(mmenke): Should probably get rid of the dependency on | 96 # TODO(mmenke): Should probably get rid of the dependency on |
| 91 # net_resources in this case (It's used in net_util, to format | 97 # net_resources in this case (It's used in net_util, to format |
| 92 # directory listings. Also used outside of net/). | 98 # directory listings. Also used outside of net/). |
| 93 'sources': ['<@(net_file_support_sources)'] | 99 'sources': ['<@(net_file_support_sources)'] |
| 94 }], | 100 }], |
| 95 ['disable_ftp_support!=1', { | 101 ['disable_ftp_support!=1', { |
| 96 'sources': ['<@(net_ftp_support_sources)'] | 102 'sources': ['<@(net_ftp_support_sources)'] |
| 97 }], | 103 }], |
| 98 ['enable_built_in_dns==1', { | 104 ['enable_built_in_dns==1', { |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 ['include', '^cert/test_root_certs_nss\\.cc$'], | 404 ['include', '^cert/test_root_certs_nss\\.cc$'], |
| 399 ['include', '^cert/x509_util_nss_certs\\.cc$'], | 405 ['include', '^cert/x509_util_nss_certs\\.cc$'], |
| 400 ['include', '^cert_net/nss_ocsp\\.cc$'], | 406 ['include', '^cert_net/nss_ocsp\\.cc$'], |
| 401 ['include', '^cert_net/nss_ocsp\\.h$'], | 407 ['include', '^cert_net/nss_ocsp\\.h$'], |
| 402 ['include', '^proxy/proxy_resolver_mac\\.cc$'], | 408 ['include', '^proxy/proxy_resolver_mac\\.cc$'], |
| 403 ['include', '^proxy/proxy_server_mac\\.cc$'], | 409 ['include', '^proxy/proxy_server_mac\\.cc$'], |
| 404 ], | 410 ], |
| 405 }], | 411 }], |
| 406 ], | 412 ], |
| 407 } | 413 } |
| OLD | NEW |