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 57 matching lines...) Loading... |
68 ] | 68 ] |
69 } | 69 } |
70 | 70 |
71 deps = [ | 71 deps = [ |
72 "../..:webrtc_common", | 72 "../..:webrtc_common", |
73 "../../api:video_frame_api", | 73 "../../api:video_frame_api", |
74 "../../api/video_codecs:video_codecs_api", | 74 "../../api/video_codecs:video_codecs_api", |
75 "../../base:rtc_base", | 75 "../../base:rtc_base", |
76 "../../base:rtc_base_approved", | 76 "../../base:rtc_base_approved", |
77 "../../base:rtc_task_queue", | 77 "../../base:rtc_task_queue", |
| 78 "../../base:sequenced_task_checker", |
| 79 "../../base:weak_ptr", |
78 "../../common_video:common_video", | 80 "../../common_video:common_video", |
79 "../../media:rtc_media", | 81 "../../media:rtc_media", |
80 "../../media:rtc_media_base", | 82 "../../media:rtc_media_base", |
81 "../../modules/utility:utility", | 83 "../../modules/utility:utility", |
82 "../../modules/video_coding:video_coding_utility", | 84 "../../modules/video_coding:video_coding_utility", |
83 "../../system_wrappers:system_wrappers", | 85 "../../system_wrappers:system_wrappers", |
84 "../../voice_engine:voice_engine", | 86 "../../voice_engine:voice_engine", |
85 "//webrtc/pc:libjingle_peerconnection", | 87 "//webrtc/pc:libjingle_peerconnection", |
86 ] | 88 ] |
87 | 89 |
(...skipping 169 matching lines...) Loading... |
257 "//third_party/android_support_test_runner:runner_java", | 259 "//third_party/android_support_test_runner:runner_java", |
258 "//third_party/junit", | 260 "//third_party/junit", |
259 "//webrtc/base:base_java", | 261 "//webrtc/base:base_java", |
260 "//webrtc/sdk/android:libjingle_peerconnection_java", | 262 "//webrtc/sdk/android:libjingle_peerconnection_java", |
261 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", | 263 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", |
262 ] | 264 ] |
263 | 265 |
264 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 266 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] |
265 } | 267 } |
266 } | 268 } |
OLD | NEW |