| OLD | NEW |
| 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("//webrtc/webrtc.gni") | 9 import("//webrtc/webrtc.gni") |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "api/org/webrtc/StatsObserver.java", | 169 "api/org/webrtc/StatsObserver.java", |
| 170 "api/org/webrtc/StatsReport.java", | 170 "api/org/webrtc/StatsReport.java", |
| 171 "api/org/webrtc/SurfaceTextureHelper.java", | 171 "api/org/webrtc/SurfaceTextureHelper.java", |
| 172 "api/org/webrtc/SurfaceViewRenderer.java", | 172 "api/org/webrtc/SurfaceViewRenderer.java", |
| 173 "api/org/webrtc/VideoCapturer.java", | 173 "api/org/webrtc/VideoCapturer.java", |
| 174 "api/org/webrtc/VideoCapturerAndroid.java", | 174 "api/org/webrtc/VideoCapturerAndroid.java", |
| 175 "api/org/webrtc/VideoFileRenderer.java", | 175 "api/org/webrtc/VideoFileRenderer.java", |
| 176 "api/org/webrtc/VideoRenderer.java", | 176 "api/org/webrtc/VideoRenderer.java", |
| 177 "api/org/webrtc/VideoSource.java", | 177 "api/org/webrtc/VideoSource.java", |
| 178 "api/org/webrtc/VideoTrack.java", | 178 "api/org/webrtc/VideoTrack.java", |
| 179 "api/org/webrtc/YuvConverter.java", | |
| 180 "src/java/org/webrtc/Camera1Session.java", | 179 "src/java/org/webrtc/Camera1Session.java", |
| 181 "src/java/org/webrtc/Camera2Session.java", | 180 "src/java/org/webrtc/Camera2Session.java", |
| 182 "src/java/org/webrtc/CameraCapturer.java", | 181 "src/java/org/webrtc/CameraCapturer.java", |
| 183 "src/java/org/webrtc/CameraSession.java", | 182 "src/java/org/webrtc/CameraSession.java", |
| 183 "src/java/org/webrtc/YuvConverter.java", |
| 184 ] | 184 ] |
| 185 | 185 |
| 186 deps = [ | 186 deps = [ |
| 187 "//webrtc/base:base_java", | 187 "//webrtc/base:base_java", |
| 188 "//webrtc/modules/audio_device:audio_device_java", | 188 "//webrtc/modules/audio_device:audio_device_java", |
| 189 ] | 189 ] |
| 190 } | 190 } |
| 191 | 191 |
| 192 android_library("libjingle_peerconnection_metrics_default_java") { | 192 android_library("libjingle_peerconnection_metrics_default_java") { |
| 193 java_files = [ "api/org/webrtc/Metrics.java" ] | 193 java_files = [ "api/org/webrtc/Metrics.java" ] |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//third_party/android_support_test_runner:runner_java", | 231 "//third_party/android_support_test_runner:runner_java", |
| 232 "//third_party/junit", | 232 "//third_party/junit", |
| 233 "//webrtc/base:base_java", | 233 "//webrtc/base:base_java", |
| 234 "//webrtc/sdk/android:libjingle_peerconnection_java", | 234 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 235 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", | 235 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", |
| 236 ] | 236 ] |
| 237 | 237 |
| 238 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 238 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] |
| 239 } | 239 } |
| 240 } | 240 } |
| OLD | NEW |