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', |
11 '../base/base.gyp:base_prefs', | 11 '../base/base.gyp:base_prefs', |
12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
13 '../crypto/crypto.gyp:crypto', | 13 '../crypto/crypto.gyp:crypto', |
14 '../sdch/sdch.gyp:sdch', | 14 '../sdch/sdch.gyp:sdch', |
15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 15 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
16 '../third_party/zlib/zlib.gyp:zlib', | 16 '../third_party/zlib/zlib.gyp:zlib', |
17 'net_derived_sources', | 17 'net_derived_sources', |
| 18 'net_features', |
18 'net_quic_proto', | 19 'net_quic_proto', |
19 'net_resources', | 20 'net_resources', |
20 ], | 21 ], |
21 'sources': [ | 22 'sources': [ |
22 '<@(net_nacl_common_sources)', | 23 '<@(net_nacl_common_sources)', |
23 '<@(net_non_nacl_sources)', | 24 '<@(net_non_nacl_sources)', |
24 ], | 25 ], |
25 'defines': [ | 26 'defines': [ |
26 'NET_IMPLEMENTATION', | 27 'NET_IMPLEMENTATION', |
27 ], | 28 ], |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 ['disable_file_support!=1', { | 90 ['disable_file_support!=1', { |
90 # TODO(mmenke): Should probably get rid of the dependency on | 91 # TODO(mmenke): Should probably get rid of the dependency on |
91 # net_resources in this case (It's used in net_util, to format | 92 # net_resources in this case (It's used in net_util, to format |
92 # directory listings. Also used outside of net/). | 93 # directory listings. Also used outside of net/). |
93 'sources': ['<@(net_file_support_sources)'] | 94 'sources': ['<@(net_file_support_sources)'] |
94 }], | 95 }], |
95 ['disable_ftp_support!=1', { | 96 ['disable_ftp_support!=1', { |
96 'sources': ['<@(net_ftp_support_sources)'] | 97 'sources': ['<@(net_ftp_support_sources)'] |
97 }], | 98 }], |
98 ['enable_bidirectional_stream==1', { | 99 ['enable_bidirectional_stream==1', { |
99 'defines': [ | |
100 'ENABLE_BIDIRECTIONAL_STREAM', | |
101 ], | |
102 'sources': ['<@(net_bidirectional_stream_sources)'] | 100 'sources': ['<@(net_bidirectional_stream_sources)'] |
103 }], | 101 }], |
104 ['enable_built_in_dns==1', { | 102 ['enable_built_in_dns==1', { |
105 'defines': [ | 103 'defines': [ |
106 'ENABLE_BUILT_IN_DNS', | 104 'ENABLE_BUILT_IN_DNS', |
107 ] | 105 ] |
108 }, { # else | 106 }, { # else |
109 'sources!': [ | 107 'sources!': [ |
110 'dns/address_sorter_posix.cc', | 108 'dns/address_sorter_posix.cc', |
111 'dns/address_sorter_posix.h', | 109 'dns/address_sorter_posix.h', |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 ['include', '^cert/test_root_certs_nss\\.cc$'], | 410 ['include', '^cert/test_root_certs_nss\\.cc$'], |
413 ['include', '^cert/x509_util_nss_certs\\.cc$'], | 411 ['include', '^cert/x509_util_nss_certs\\.cc$'], |
414 ['include', '^cert_net/nss_ocsp\\.cc$'], | 412 ['include', '^cert_net/nss_ocsp\\.cc$'], |
415 ['include', '^cert_net/nss_ocsp\\.h$'], | 413 ['include', '^cert_net/nss_ocsp\\.h$'], |
416 ['include', '^proxy/proxy_resolver_mac\\.cc$'], | 414 ['include', '^proxy/proxy_resolver_mac\\.cc$'], |
417 ['include', '^proxy/proxy_server_mac\\.cc$'], | 415 ['include', '^proxy/proxy_server_mac\\.cc$'], |
418 ], | 416 ], |
419 }], | 417 }], |
420 ], | 418 ], |
421 } | 419 } |
OLD | NEW |