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

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: address mef's comments 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') | components/cronet/README.md » ('J')
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 23 matching lines...) Expand all
34 }, 34 },
35 { 35 {
36 'target_name': 'net_request_priority_java', 36 'target_name': 'net_request_priority_java',
37 'type': 'none', 37 'type': 'none',
38 'variables': { 38 'variables': {
39 'source_file': '../net/base/request_priority.h', 39 'source_file': '../net/base/request_priority.h',
40 }, 40 },
41 'includes': [ '../build/android/java_cpp_enum.gypi' ], 41 'includes': [ '../build/android/java_cpp_enum.gypi' ],
42 }, 42 },
43 { 43 {
44 'target_name': 'cronet_url_request_context_config_list', 44 'target_name': 'cronet_engine_builder_list',
45 'type': 'none', 45 'type': 'none',
46 'sources': [ 46 'sources': [
47 'cronet/android/java/src/org/chromium/net/UrlRequestContextConfigLis t.template', 47 'cronet/android/java/src/org/chromium/net/CronetEngineBuilderList.te mplate',
48 ], 48 ],
49 'variables': { 49 'variables': {
50 'package_name': 'org/chromium/cronet', 50 'package_name': 'org/chromium/cronet',
51 'template_deps': ['cronet/url_request_context_config_list.h'], 51 'template_deps': ['cronet/url_request_context_config_list.h'],
52 }, 52 },
53 'includes': [ '../build/android/java_cpp_template.gypi' ], 53 'includes': [ '../build/android/java_cpp_template.gypi' ],
54 }, 54 },
55 { 55 {
56 'target_name': 'load_states_list', 56 'target_name': 'load_states_list',
57 'type': 'none', 57 'type': 'none',
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 '../base/base.gyp:base', 199 '../base/base.gyp:base',
200 '../net/net.gyp:net_small', 200 '../net/net.gyp:net_small',
201 '../url/url.gyp:url_lib_use_icu_alternatives_on_android', 201 '../url/url.gyp:url_lib_use_icu_alternatives_on_android',
202 ], 202 ],
203 }, 203 },
204 { # cronet_api.jar defines Cronet API and provides implementation of 204 { # cronet_api.jar defines Cronet API and provides implementation of
205 # legacy api using HttpUrlConnection (not the Chromium stack). 205 # legacy api using HttpUrlConnection (not the Chromium stack).
206 'target_name': 'cronet_api', 206 'target_name': 'cronet_api',
207 'type': 'none', 207 'type': 'none',
208 'dependencies': [ 208 'dependencies': [
209 'cronet_url_request_context_config_list', 209 'cronet_engine_builder_list',
210 'cronet_version', 210 'cronet_version',
211 'load_states_list', 211 'load_states_list',
212 ], 212 ],
213 'variables': { 213 'variables': {
214 'java_in_dir': 'cronet/android/java', 214 'java_in_dir': 'cronet/android/java',
215 'javac_includes': [ 215 'javac_includes': [
216 '**/ChunkedWritableByteChannel.java', 216 '**/ChunkedWritableByteChannel.java',
217 '**/CronetEngine.java',
218 '**/CronetEngineBuilderList.java',
217 '**/ExtendedResponseInfo.java', 219 '**/ExtendedResponseInfo.java',
218 '**/HistogramManager.java', 220 '**/HistogramManager.java',
219 '**/HttpUrlConnection*.java', 221 '**/HttpUrlConnection*.java',
220 '**/HttpUrlRequest*.java', 222 '**/HttpUrlRequest*.java',
221 '**/LoadState.java', 223 '**/LoadState.java',
222 '**/ResponseInfo.java', 224 '**/ResponseInfo.java',
223 '**/ResponseTooLargeException.java', 225 '**/ResponseTooLargeException.java',
224 '**/UploadDataProvider.java', 226 '**/UploadDataProvider.java',
225 '**/UploadDataSink.java', 227 '**/UploadDataSink.java',
226 '**/UrlRequest.java', 228 '**/UrlRequest.java',
227 '**/UrlRequestContext.java',
228 '**/UrlRequestContextConfig.java',
229 '**/UrlRequestContextConfigList.java',
230 '**/UrlRequestException.java', 229 '**/UrlRequestException.java',
231 '**/UrlRequestListener.java', 230 '**/UrlRequestListener.java',
232 '**/UserAgent.java', 231 '**/UserAgent.java',
233 '**/Version.java', 232 '**/Version.java',
234 ], 233 ],
235 }, 234 },
236 'includes': [ '../build/java.gypi' ], 235 'includes': [ '../build/java.gypi' ],
237 }, 236 },
238 { # cronet.jar implements HttpUrlRequest interface using Chromium stack 237 { # cronet.jar implements HttpUrlRequest interface using Chromium stack
239 # in native libcronet.so library. 238 # in native libcronet.so library.
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 }, 589 },
591 ], 590 ],
592 }, 591 },
593 ], 592 ],
594 'variables': { 593 'variables': {
595 'enable_data_reduction_proxy_support%': 0, 594 'enable_data_reduction_proxy_support%': 0,
596 }, 595 },
597 }], # OS=="android" 596 }], # OS=="android"
598 ], 597 ],
599 } 598 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/README.md » ('j') | components/cronet/README.md » ('J')

Powered by Google App Engine
This is Rietveld 408576698