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

Side by Side Diff: components/cronet.gypi

Issue 725683002: [Cronet] Initial implementation of HttpURLConnection (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a private message loop Created 6 years, 1 month 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
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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 '**/ChromiumUrlRequest.java', 223 '**/ChromiumUrlRequest.java',
224 '**/ChromiumUrlRequestContext.java', 224 '**/ChromiumUrlRequestContext.java',
225 '**/ChromiumUrlRequestError.java', 225 '**/ChromiumUrlRequestError.java',
226 '**/ChromiumUrlRequestFactory.java', 226 '**/ChromiumUrlRequestFactory.java',
227 '**/ChromiumUrlRequestPriority.java', 227 '**/ChromiumUrlRequestPriority.java',
228 '**/CronetResponseInfo.java', 228 '**/CronetResponseInfo.java',
229 '**/CronetUrlRequest.java', 229 '**/CronetUrlRequest.java',
230 '**/CronetUrlRequestContext.java', 230 '**/CronetUrlRequestContext.java',
231 '**/CronetUrlRequestFactory.java', 231 '**/CronetUrlRequestFactory.java',
232 '**/RequestPriority.java', 232 '**/RequestPriority.java',
233 '**/urlconnection/ByteBufferInputStream.java',
234 '**/urlconnection/CronetHttpURLConnection.java',
235 '**/urlconnection/CronetHttpURLStreamHandler.java',
236 '**/urlconnection/CronetURLStreamHandlerFactory.java',
237 '**/urlconnection/MessageLoop.java',
233 ], 238 ],
234 }, 239 },
235 'includes': [ '../build/java.gypi' ], 240 'includes': [ '../build/java.gypi' ],
241 },
242 { # cronet_tests.jar implements HttpUrlRequest interface using Chromium stack
xunjieli 2014/11/14 16:11:17 This comment is not true. Will change it in next C
243 # in native libcronet.so library.
244 'target_name': 'cronet_tests',
245 'type': 'none',
246 'dependencies': [
247 'cronet_stub',
248 'cronet',
249 'cronet_tests_jni_headers',
250 ],
251 'variables': {
252 'java_in_dir': 'cronet/android/test',
253 'javac_includes': [
254 '**/MockUrlRequestJobUtil.java',
255 '**/CronetTestActivity.java',
256 '**/CronetTestApplication.java',
257 '**/CronetTestUtil.java',
258 '**/NetworkChangeNotifierUtil.java',
259 '**/UploadTestServer.java',
260 ],
261 },
262 'includes': [ '../build/java.gypi' ],
236 }, 263 },
237 { 264 {
238 'target_name': 'cronet_sample_apk', 265 'target_name': 'cronet_sample_apk',
239 'type': 'none', 266 'type': 'none',
240 'dependencies': [ 267 'dependencies': [
241 'cronet', 268 'cronet',
242 'cronet_stub', 269 'cronet_stub',
243 ], 270 ],
244 'variables': { 271 'variables': {
245 'apk_name': 'CronetSample', 272 'apk_name': 'CronetSample',
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 'files': [ 533 'files': [
507 '<(SHARED_LIB_DIR)/<(native_lib)', 534 '<(SHARED_LIB_DIR)/<(native_lib)',
508 ], 535 ],
509 }, 536 },
510 ], 537 ],
511 }, 538 },
512 ], 539 ],
513 }], # OS=="android" and use_icu_alternatives_on_android==1 540 }], # OS=="android" and use_icu_alternatives_on_android==1
514 ], 541 ],
515 } 542 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698