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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "api/org/webrtc/SurfaceViewRenderer.java", | 176 "api/org/webrtc/SurfaceViewRenderer.java", |
177 "api/org/webrtc/VideoCapturer.java", | 177 "api/org/webrtc/VideoCapturer.java", |
178 "api/org/webrtc/VideoFileRenderer.java", | 178 "api/org/webrtc/VideoFileRenderer.java", |
179 "api/org/webrtc/VideoRenderer.java", | 179 "api/org/webrtc/VideoRenderer.java", |
180 "api/org/webrtc/VideoSource.java", | 180 "api/org/webrtc/VideoSource.java", |
181 "api/org/webrtc/VideoTrack.java", | 181 "api/org/webrtc/VideoTrack.java", |
182 "src/java/org/webrtc/AndroidVideoTrackSourceObserver.java", | 182 "src/java/org/webrtc/AndroidVideoTrackSourceObserver.java", |
183 "src/java/org/webrtc/Camera1Session.java", | 183 "src/java/org/webrtc/Camera1Session.java", |
184 "src/java/org/webrtc/Camera2Session.java", | 184 "src/java/org/webrtc/Camera2Session.java", |
185 "src/java/org/webrtc/CameraCapturer.java", | 185 "src/java/org/webrtc/CameraCapturer.java", |
186 "src/java/org/webrtc/CameraStatistics.java", | |
187 "src/java/org/webrtc/CameraSession.java", | 186 "src/java/org/webrtc/CameraSession.java", |
188 "src/java/org/webrtc/Histogram.java", | 187 "src/java/org/webrtc/Histogram.java", |
189 "src/java/org/webrtc/YuvConverter.java", | 188 "src/java/org/webrtc/YuvConverter.java", |
190 ] | 189 ] |
191 | 190 |
192 deps = [ | 191 deps = [ |
193 "//webrtc/base:base_java", | 192 "//webrtc/base:base_java", |
194 "//webrtc/modules/audio_device:audio_device_java", | 193 "//webrtc/modules/audio_device:audio_device_java", |
195 ] | 194 ] |
196 } | 195 } |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 "//third_party/android_support_test_runner:runner_java", | 236 "//third_party/android_support_test_runner:runner_java", |
238 "//third_party/junit", | 237 "//third_party/junit", |
239 "//webrtc/base:base_java", | 238 "//webrtc/base:base_java", |
240 "//webrtc/sdk/android:libjingle_peerconnection_java", | 239 "//webrtc/sdk/android:libjingle_peerconnection_java", |
241 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", | 240 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", |
242 ] | 241 ] |
243 | 242 |
244 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 243 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] |
245 } | 244 } |
246 } | 245 } |
OLD | NEW |