OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 into both 'cronet_static' and 'cronet_static_small'. | 6 # This target is included into both 'cronet_static' and 'cronet_static_small'. |
7 'dependencies': [ | 7 'dependencies': [ |
8 '../base/base.gyp:base', | 8 '../base/base.gyp:base', |
9 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations', | 9 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann otations', |
10 'cronet_features', | |
10 'cronet_jni_headers', | 11 'cronet_jni_headers', |
11 'cronet_url_request_java', | 12 'cronet_url_request_java', |
12 'cronet_version', | 13 'cronet_version', |
13 'cronet_version_header', | 14 'cronet_version_header', |
14 'metrics', | 15 'metrics', |
15 ], | 16 ], |
16 'sources': [ | 17 'sources': [ |
17 'android/chromium_url_request.cc', | 18 'android/chromium_url_request.cc', |
18 'android/chromium_url_request.h', | 19 'android/chromium_url_request.h', |
19 'android/chromium_url_request_context.cc', | 20 'android/chromium_url_request_context.cc', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
65 { | 66 { |
66 'defines' : [ | 67 'defines' : [ |
67 'DATA_REDUCTION_PROXY_SUPPORT' | 68 'DATA_REDUCTION_PROXY_SUPPORT' |
68 ], | 69 ], |
69 'sources': [ | 70 'sources': [ |
70 'android/cronet_data_reduction_proxy.cc', | 71 'android/cronet_data_reduction_proxy.cc', |
71 'android/cronet_data_reduction_proxy.h', | 72 'android/cronet_data_reduction_proxy.h', |
72 ], | 73 ], |
73 } | 74 } |
74 ], | 75 ], |
76 # If Bidirectional Stream support is enabled, add the following | |
pauljensen
2016/01/12 16:55:42
following->following sources.
mef
2016/01/14 21:07:55
Done.
| |
77 # Dependencies are target-specific and are not included here. | |
78 ['enable_bidirectional_stream==1', | |
79 { | |
80 'sources': [ | |
81 'android/cronet_bidirectional_stream_adapter.cc', | |
82 'android/cronet_bidirectional_stream_adapter.h', | |
83 ], | |
84 } | |
85 ], | |
75 ], | 86 ], |
76 } | 87 } |
OLD | NEW |