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

Side by Side Diff: components/cronet/android/BUILD.gn

Issue 2417643007: Expose RTT and throughput estimates from Cronet (Closed)
Patch Set: ps Created 4 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 import("//build/util/process_version.gni") 8 import("//build/util/process_version.gni")
9 import("//build/util/version.gni") 9 import("//build/util/version.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 16 matching lines...) Expand all
27 ] 27 ]
28 jni_package = "cronet" 28 jni_package = "cronet"
29 } 29 }
30 30
31 java_cpp_enum("effective_connection_type_java") { 31 java_cpp_enum("effective_connection_type_java") {
32 sources = [ 32 sources = [
33 "//net/nqe/effective_connection_type.h", 33 "//net/nqe/effective_connection_type.h",
34 ] 34 ]
35 } 35 }
36 36
37 java_cpp_enum("rtt_throughput_values_java") {
38 sources = [
39 "//net/nqe/network_quality.h",
40 ]
41 }
42
37 java_cpp_enum("chromium_url_request_java") { 43 java_cpp_enum("chromium_url_request_java") {
38 sources = [ 44 sources = [
39 "chromium_url_request.h", 45 "chromium_url_request.h",
40 ] 46 ]
41 } 47 }
42 48
43 java_cpp_enum("net_request_priority_java") { 49 java_cpp_enum("net_request_priority_java") {
44 sources = [ 50 sources = [
45 "//net/base/request_priority.h", 51 "//net/base/request_priority.h",
46 ] 52 ]
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 "api/src/org/chromium/net/UserAgent.java", 307 "api/src/org/chromium/net/UserAgent.java",
302 ] 308 ]
303 309
304 deps = [ 310 deps = [
305 "//third_party/android_tools:android_support_annotations_java", 311 "//third_party/android_tools:android_support_annotations_java",
306 ] 312 ]
307 313
308 srcjar_deps = [ 314 srcjar_deps = [
309 ":cronet_api_version_srcjar", 315 ":cronet_api_version_srcjar",
310 ":effective_connection_type_java", 316 ":effective_connection_type_java",
317 ":rtt_throughput_values_java",
311 ":http_cache_type_java", 318 ":http_cache_type_java",
312 ":url_request_error_java", 319 ":url_request_error_java",
313 ":load_states_list", 320 ":load_states_list",
314 ":network_quality_observation_source_java", 321 ":network_quality_observation_source_java",
315 ] 322 ]
316 323
317 run_findbugs_override = true 324 run_findbugs_override = true
318 } 325 }
319 326
320 android_library("cronet_java") { 327 android_library("cronet_java") {
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
1042 ":jar_cronet_api_source", 1049 ":jar_cronet_api_source",
1043 ":jar_cronet_other_source", 1050 ":jar_cronet_other_source",
1044 ":jar_cronet_sample_source", 1051 ":jar_cronet_sample_source",
1045 ":repackage_extracted_jars", 1052 ":repackage_extracted_jars",
1046 ] 1053 ]
1047 if (current_cpu == "arm" && arm_version == 7) { 1054 if (current_cpu == "arm" && arm_version == 7) {
1048 deps += [ ":enforce_no_neon" ] 1055 deps += [ ":enforce_no_neon" ]
1049 } 1056 }
1050 } 1057 }
1051 } 1058 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698