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

Side by Side Diff: webrtc/examples/BUILD.gn

Issue 2403463002: Allow custom metrics implementations on Android. (Closed)
Patch Set: Changes according to kjellander's comments. #1 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
« webrtc/api/api.gyp ('K') | « webrtc/api/api.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java", 72 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java",
73 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", 73 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java",
74 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", 74 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java",
75 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", 75 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java",
76 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", 76 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java",
77 ] 77 ]
78 78
79 deps = [ 79 deps = [
80 ":AppRTCMobile_resources", 80 ":AppRTCMobile_resources",
81 "//webrtc/api:libjingle_peerconnection_java", 81 "//webrtc/api:libjingle_peerconnection_java",
82 "//webrtc/api:libjingle_peerconnection_metrics_default_java",
82 "//webrtc/base:base_java", 83 "//webrtc/base:base_java",
83 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java", 84 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java",
84 ] 85 ]
85 } 86 }
86 87
87 android_resources("AppRTCMobile_resources") { 88 android_resources("AppRTCMobile_resources") {
88 resource_dirs = [ "androidapp/res" ] 89 resource_dirs = [ "androidapp/res" ]
89 custom_package = "org.appspot.apprtc" 90 custom_package = "org.appspot.apprtc"
90 } 91 }
91 92
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 "//webrtc/system_wrappers:field_trial_default", 513 "//webrtc/system_wrappers:field_trial_default",
513 "//webrtc/system_wrappers:metrics_default", 514 "//webrtc/system_wrappers:metrics_default",
514 ] 515 ]
515 if (is_clang) { 516 if (is_clang) {
516 # Suppress warnings from the Chromium Clang plugin. 517 # Suppress warnings from the Chromium Clang plugin.
517 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 518 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
518 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 519 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
519 } 520 }
520 } 521 }
521 } 522 }
OLDNEW
« webrtc/api/api.gyp ('K') | « webrtc/api/api.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698