OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 | 203 |
204 rtc_static_library("rtc_task_queue") { | 204 rtc_static_library("rtc_task_queue") { |
205 public_deps = [ | 205 public_deps = [ |
206 ":rtc_base_approved", | 206 ":rtc_base_approved", |
207 ] | 207 ] |
208 | 208 |
209 sources = [ | 209 sources = [ |
210 "sequenced_task_checker.h", | 210 "sequenced_task_checker.h", |
211 "sequenced_task_checker_impl.cc", | 211 "sequenced_task_checker_impl.cc", |
212 "sequenced_task_checker_impl.h", | 212 "sequenced_task_checker_impl.h", |
| 213 "weak_ptr.cc", |
| 214 "weak_ptr.h", |
213 ] | 215 ] |
214 | 216 |
215 if (build_with_chromium) { | 217 if (build_with_chromium) { |
216 sources += [ | 218 sources += [ |
217 "../../webrtc_overrides/webrtc/base/task_queue.cc", | 219 "../../webrtc_overrides/webrtc/base/task_queue.cc", |
218 "../../webrtc_overrides/webrtc/base/task_queue.h", | 220 "../../webrtc_overrides/webrtc/base/task_queue.h", |
219 ] | 221 ] |
220 include_dirs = [ "../../webrtc_overrides" ] | 222 include_dirs = [ "../../webrtc_overrides" ] |
221 } else { | 223 } else { |
222 sources += [ | 224 sources += [ |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
740 "java/src/org/webrtc/Logging.java", | 742 "java/src/org/webrtc/Logging.java", |
741 "java/src/org/webrtc/Size.java", | 743 "java/src/org/webrtc/Size.java", |
742 "java/src/org/webrtc/ThreadUtils.java", | 744 "java/src/org/webrtc/ThreadUtils.java", |
743 ] | 745 ] |
744 | 746 |
745 deps = [ | 747 deps = [ |
746 "//base:base_java", | 748 "//base:base_java", |
747 ] | 749 ] |
748 } | 750 } |
749 } | 751 } |
OLD | NEW |