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

Side by Side Diff: components/cronet.gypi

Issue 1942893002: Split NQE to multiple files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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/android/BUILD.gn » ('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 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'cronet_jni_headers', 10 'target_name': 'cronet_jni_headers',
(...skipping 22 matching lines...) Expand all
33 }, 33 },
34 { 34 {
35 'target_name': 'net_request_priority_java', 35 'target_name': 'net_request_priority_java',
36 'type': 'none', 36 'type': 'none',
37 'variables': { 37 'variables': {
38 'source_file': '../net/base/request_priority.h', 38 'source_file': '../net/base/request_priority.h',
39 }, 39 },
40 'includes': [ '../build/android/java_cpp_enum.gypi' ], 40 'includes': [ '../build/android/java_cpp_enum.gypi' ],
41 }, 41 },
42 { 42 {
43 'target_name': 'network_quality_observations_java', 43 'target_name': 'network_quality_observation_source_java',
44 'type': 'none', 44 'type': 'none',
45 'variables': { 45 'variables': {
46 'source_file': '../net/nqe/network_quality_estimator.h', 46 'source_file': '../net/nqe/network_quality_observation_source.h',
47 }, 47 },
48 'includes': [ '../build/android/java_cpp_enum.gypi' ], 48 'includes': [ '../build/android/java_cpp_enum.gypi' ],
49 }, 49 },
50 { 50 {
51 'target_name': 'url_request_error_java', 51 'target_name': 'url_request_error_java',
52 'type': 'none', 52 'type': 'none',
53 'variables': { 53 'variables': {
54 'source_file': 'cronet/android/url_request_error.h', 54 'source_file': 'cronet/android/url_request_error.h',
55 }, 55 },
56 'includes': [ '../build/android/java_cpp_enum.gypi' ], 56 'includes': [ '../build/android/java_cpp_enum.gypi' ],
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 }, 224 },
225 { # cronet_api.jar defines Cronet API and provides implementation of 225 { # cronet_api.jar defines Cronet API and provides implementation of
226 # legacy api using HttpUrlConnection (not the Chromium stack). 226 # legacy api using HttpUrlConnection (not the Chromium stack).
227 'target_name': 'cronet_api', 227 'target_name': 'cronet_api',
228 'type': 'none', 228 'type': 'none',
229 'dependencies': [ 229 'dependencies': [
230 'http_cache_type_java', 230 'http_cache_type_java',
231 'url_request_error_java', 231 'url_request_error_java',
232 'cronet_version', 232 'cronet_version',
233 'load_states_list', 233 'load_states_list',
234 'network_quality_observations_java', 234 'network_quality_observation_source_java',
235 '../third_party/android_tools/android_tools.gyp:android_support_anno tations_javalib', 235 '../third_party/android_tools/android_tools.gyp:android_support_anno tations_javalib',
236 ], 236 ],
237 'variables': { 237 'variables': {
238 'java_in_dir': 'cronet/android/api', 238 'java_in_dir': 'cronet/android/api',
239 'run_findbugs': 1, 239 'run_findbugs': 1,
240 }, 240 },
241 'includes': [ '../build/java.gypi' ], 241 'includes': [ '../build/java.gypi' ],
242 }, 242 },
243 { # cronet.jar implements HttpUrlRequest interface using Chromium stack 243 { # cronet.jar implements HttpUrlRequest interface using Chromium stack
244 # in native libcronet.so library. 244 # in native libcronet.so library.
245 'target_name': 'cronet_java', 245 'target_name': 'cronet_java',
246 'type': 'none', 246 'type': 'none',
247 'dependencies': [ 247 'dependencies': [
248 '../base/base.gyp:base', 248 '../base/base.gyp:base',
249 'cronet_api', 249 'cronet_api',
250 'chromium_url_request_java', 250 'chromium_url_request_java',
251 'libcronet', 251 'libcronet',
252 'net_request_priority_java', 252 'net_request_priority_java',
253 'network_quality_observations_java', 253 'network_quality_observation_source_java',
254 '../third_party/android_tools/android_tools.gyp:android_support_anno tations_javalib', 254 '../third_party/android_tools/android_tools.gyp:android_support_anno tations_javalib',
255 ], 255 ],
256 'variables': { 256 'variables': {
257 'java_in_dir': 'cronet/android/java', 257 'java_in_dir': 'cronet/android/java',
258 'javac_includes': [ 258 'javac_includes': [
259 '**/ChromiumUrlRequest.java', 259 '**/ChromiumUrlRequest.java',
260 '**/ChromiumUrlRequestContext.java', 260 '**/ChromiumUrlRequestContext.java',
261 '**/ChromiumUrlRequestError.java', 261 '**/ChromiumUrlRequestError.java',
262 '**/ChromiumUrlRequestFactory.java', 262 '**/ChromiumUrlRequestFactory.java',
263 '**/ChromiumUrlRequestPriority.java', 263 '**/ChromiumUrlRequestPriority.java',
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
932 'cronet/ios/test/cronet_bidirectional_stream_test.mm', 932 'cronet/ios/test/cronet_bidirectional_stream_test.mm',
933 'cronet/ios/test/cronet_test_runner.mm', 933 'cronet/ios/test/cronet_test_runner.mm',
934 ], 934 ],
935 }, 935 },
936 ], 936 ],
937 }, 937 },
938 ], 938 ],
939 }], # OS=="ios" 939 }], # OS=="ios"
940 ], 940 ],
941 } 941 }
OLDNEW
« no previous file with comments | « no previous file | components/cronet/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698