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

Side by Side Diff: components/cronet.gypi

Issue 1359343005: Update ResponseInfo to UrlResponseInfo with API review comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pass the integration 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
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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 '**/ResponseInfo.java', 222 '**/ResponseInfo.java',
223 '**/ResponseTooLargeException.java', 223 '**/ResponseTooLargeException.java',
224 '**/UploadDataProvider.java', 224 '**/UploadDataProvider.java',
225 '**/UploadDataSink.java', 225 '**/UploadDataSink.java',
226 '**/UrlRequest.java', 226 '**/UrlRequest.java',
227 '**/UrlRequestContext.java', 227 '**/UrlRequestContext.java',
228 '**/UrlRequestContextConfig.java', 228 '**/UrlRequestContextConfig.java',
229 '**/UrlRequestContextConfigList.java', 229 '**/UrlRequestContextConfigList.java',
230 '**/UrlRequestException.java', 230 '**/UrlRequestException.java',
231 '**/UrlRequestListener.java', 231 '**/UrlRequestListener.java',
232 '**/UrlResponseInfo.java',
232 '**/UserAgent.java', 233 '**/UserAgent.java',
233 '**/Version.java', 234 '**/Version.java',
234 ], 235 ],
235 }, 236 },
236 'includes': [ '../build/java.gypi' ], 237 'includes': [ '../build/java.gypi' ],
237 }, 238 },
238 { # cronet.jar implements HttpUrlRequest interface using Chromium stack 239 { # cronet.jar implements HttpUrlRequest interface using Chromium stack
239 # in native libcronet.so library. 240 # in native libcronet.so library.
240 'target_name': 'cronet_java', 241 'target_name': 'cronet_java',
241 'type': 'none', 242 'type': 'none',
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 }, 591 },
591 ], 592 ],
592 }, 593 },
593 ], 594 ],
594 'variables': { 595 'variables': {
595 'enable_data_reduction_proxy_support%': 0, 596 'enable_data_reduction_proxy_support%': 0,
596 }, 597 },
597 }], # OS=="android" 598 }], # OS=="android"
598 ], 599 ],
599 } 600 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698