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

Side by Side Diff: components/cronet.gypi

Issue 1363723002: [Cronet] Create Builders, rename UrlRequestContext to CronetEngine (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Ben's tests Created 5 years, 2 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 | « no previous file | components/cronet/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'conditions': [ 6 'conditions': [
7 ['OS=="android"', { 7 ['OS=="android"', {
8 # TODO(mef): Figure out what needs to be done for gn script. 8 # TODO(mef): Figure out what needs to be done for gn script.
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 }, 42 },
43 { 43 {
44 'target_name': 'network_quality_observations_java', 44 'target_name': 'network_quality_observations_java',
45 'type': 'none', 45 'type': 'none',
46 'variables': { 46 'variables': {
47 'source_file': '../net/base/network_quality_estimator.h', 47 'source_file': '../net/base/network_quality_estimator.h',
48 }, 48 },
49 'includes': [ '../build/android/java_cpp_enum.gypi' ], 49 'includes': [ '../build/android/java_cpp_enum.gypi' ],
50 }, 50 },
51 { 51 {
52 'target_name': 'cronet_url_request_context_config_list', 52 'target_name': 'cronet_engine_builder_list',
53 'type': 'none', 53 'type': 'none',
54 'sources': [ 54 'sources': [
55 'cronet/android/java/src/org/chromium/net/UrlRequestContextConfigLis t.template', 55 'cronet/android/java/src/org/chromium/net/CronetEngineBuilderList.te mplate',
56 ], 56 ],
57 'variables': { 57 'variables': {
58 'package_name': 'org/chromium/cronet', 58 'package_name': 'org/chromium/cronet',
59 'template_deps': ['cronet/url_request_context_config_list.h'], 59 'template_deps': ['cronet/url_request_context_config_list.h'],
60 }, 60 },
61 'includes': [ '../build/android/java_cpp_template.gypi' ], 61 'includes': [ '../build/android/java_cpp_template.gypi' ],
62 }, 62 },
63 { 63 {
64 'target_name': 'load_states_list', 64 'target_name': 'load_states_list',
65 'type': 'none', 65 'type': 'none',
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 '../base/base.gyp:base', 207 '../base/base.gyp:base',
208 '../net/net.gyp:net_small', 208 '../net/net.gyp:net_small',
209 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', 209 '../url/url.gyp:url_lib_use_icu_alternatives_on_android',
210 ], 210 ],
211 }, 211 },
212 { # cronet_api.jar defines Cronet API and provides implementation of 212 { # cronet_api.jar defines Cronet API and provides implementation of
213 # legacy api using HttpUrlConnection (not the Chromium stack). 213 # legacy api using HttpUrlConnection (not the Chromium stack).
214 'target_name': 'cronet_api', 214 'target_name': 'cronet_api',
215 'type': 'none', 215 'type': 'none',
216 'dependencies': [ 216 'dependencies': [
217 'cronet_url_request_context_config_list', 217 'cronet_engine_builder_list',
218 'cronet_version', 218 'cronet_version',
219 'load_states_list', 219 'load_states_list',
220 'network_quality_observations_java', 220 'network_quality_observations_java',
221 ], 221 ],
222 'variables': { 222 'variables': {
223 'java_in_dir': 'cronet/android/java', 223 'java_in_dir': 'cronet/android/java',
224 'javac_includes': [ 224 'javac_includes': [
225 '**/ChunkedWritableByteChannel.java', 225 '**/ChunkedWritableByteChannel.java',
226 '**/CronetEngine.java',
227 '**/CronetEngineBuilderList.java',
226 '**/ExtendedResponseInfo.java', 228 '**/ExtendedResponseInfo.java',
227 '**/HistogramManager.java', 229 '**/HistogramManager.java',
228 '**/HttpUrlConnection*.java', 230 '**/HttpUrlConnection*.java',
229 '**/HttpUrlRequest*.java', 231 '**/HttpUrlRequest*.java',
230 '**/LoadState.java', 232 '**/LoadState.java',
231 '**/NetworkQualityRttListener.java', 233 '**/NetworkQualityRttListener.java',
232 '**/NetworkQualityThroughputListener.java', 234 '**/NetworkQualityThroughputListener.java',
233 '**/ResponseInfo.java', 235 '**/ResponseInfo.java',
234 '**/ResponseTooLargeException.java', 236 '**/ResponseTooLargeException.java',
235 '**/UploadDataProvider.java', 237 '**/UploadDataProvider.java',
236 '**/UploadDataSink.java', 238 '**/UploadDataSink.java',
237 '**/UrlRequest.java', 239 '**/UrlRequest.java',
238 '**/UrlRequestContext.java',
239 '**/UrlRequestContextConfig.java', 240 '**/UrlRequestContextConfig.java',
240 '**/UrlRequestContextConfigList.java',
241 '**/UrlRequestException.java', 241 '**/UrlRequestException.java',
242 '**/UrlRequestListener.java', 242 '**/UrlRequestListener.java',
243 '**/UserAgent.java', 243 '**/UserAgent.java',
244 '**/Version.java', 244 '**/Version.java',
245 ], 245 ],
246 }, 246 },
247 'includes': [ '../build/java.gypi' ], 247 'includes': [ '../build/java.gypi' ],
248 }, 248 },
249 { # cronet.jar implements HttpUrlRequest interface using Chromium stack 249 { # cronet.jar implements HttpUrlRequest interface using Chromium stack
250 # in native libcronet.so library. 250 # in native libcronet.so library.
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 }, 602 },
603 ], 603 ],
604 }, 604 },
605 ], 605 ],
606 'variables': { 606 'variables': {
607 'enable_data_reduction_proxy_support%': 0, 607 'enable_data_reduction_proxy_support%': 0,
608 }, 608 },
609 }], # OS=="android" 609 }], # OS=="android"
610 ], 610 ],
611 } 611 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698