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

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

Issue 2206473003: Remove LooperExecutor and replace it with built-in HandlerThread. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changes according to magjed's comments. Created 4 years, 4 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 | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('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 (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 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 "androidapp/src/org/appspot/apprtc/PercentFrameLayout.java", 50 "androidapp/src/org/appspot/apprtc/PercentFrameLayout.java",
51 "androidapp/src/org/appspot/apprtc/RoomParametersFetcher.java", 51 "androidapp/src/org/appspot/apprtc/RoomParametersFetcher.java",
52 "androidapp/src/org/appspot/apprtc/SettingsActivity.java", 52 "androidapp/src/org/appspot/apprtc/SettingsActivity.java",
53 "androidapp/src/org/appspot/apprtc/SettingsFragment.java", 53 "androidapp/src/org/appspot/apprtc/SettingsFragment.java",
54 "androidapp/src/org/appspot/apprtc/TCPChannelClient.java", 54 "androidapp/src/org/appspot/apprtc/TCPChannelClient.java",
55 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java", 55 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java",
56 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", 56 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java",
57 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", 57 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java",
58 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", 58 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java",
59 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", 59 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java",
60 "androidapp/src/org/appspot/apprtc/util/LooperExecutor.java",
61 ] 60 ]
62 61
63 deps = [ 62 deps = [
64 ":AppRTCDemo_resources", 63 ":AppRTCDemo_resources",
65 "//webrtc/api:libjingle_peerconnection_java", 64 "//webrtc/api:libjingle_peerconnection_java",
66 "//webrtc/base:base_java", 65 "//webrtc/base:base_java",
67 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java", 66 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java",
68 ] 67 ]
69 } 68 }
70 69
(...skipping 13 matching lines...) Expand all
84 deps = [ 83 deps = [
85 ":AppRTCDemo_javalib", 84 ":AppRTCDemo_javalib",
86 "//webrtc/api:libjingle_peerconnection_java", 85 "//webrtc/api:libjingle_peerconnection_java",
87 ] 86 ]
88 } 87 }
89 88
90 junit_binary("AppRTCDemoJUnitTest") { 89 junit_binary("AppRTCDemoJUnitTest") {
91 java_files = [ 90 java_files = [
92 "androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java", 91 "androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java",
93 "androidjunit/src/org/appspot/apprtc/TCPChannelClientTest.java", 92 "androidjunit/src/org/appspot/apprtc/TCPChannelClientTest.java",
94 "androidjunit/src/org/appspot/apprtc/util/LooperExecutorTest.java",
95 ] 93 ]
96 94
97 deps = [ 95 deps = [
98 ":AppRTCDemo_javalib", 96 ":AppRTCDemo_javalib",
99 "//webrtc/api:libjingle_peerconnection_java", 97 "//webrtc/api:libjingle_peerconnection_java",
100 "//webrtc/api:libjingle_peerconnection_jni", 98 "//webrtc/api:libjingle_peerconnection_jni",
101 ] 99 ]
102 } 100 }
103 } 101 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/androidapp/src/org/appspot/apprtc/CallActivity.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698