| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 } | 185 } |
| 186 } | 186 } |
| 187 | 187 |
| 188 static_library("rtc_task_queue") { | 188 static_library("rtc_task_queue") { |
| 189 public_deps = [ | 189 public_deps = [ |
| 190 ":rtc_base_approved", | 190 ":rtc_base_approved", |
| 191 ] | 191 ] |
| 192 configs += [ "..:common_config" ] | 192 configs += [ "..:common_config" ] |
| 193 | 193 |
| 194 sources = [ | 194 sources = [ |
| 195 "sequenced_task_checker.h", |
| 196 "sequenced_task_checker_impl.cc", |
| 197 "sequenced_task_checker_impl.h", |
| 195 "task_queue.h", | 198 "task_queue.h", |
| 196 "task_queue_posix.h", | 199 "task_queue_posix.h", |
| 197 ] | 200 ] |
| 198 | 201 |
| 199 if (rtc_build_libevent) { | 202 if (rtc_build_libevent) { |
| 200 deps = [ | 203 deps = [ |
| 201 "//base/third_party/libevent", | 204 "//base/third_party/libevent", |
| 202 ] | 205 ] |
| 203 } | 206 } |
| 204 | 207 |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 "java/src/org/webrtc/Logging.java", | 696 "java/src/org/webrtc/Logging.java", |
| 694 "java/src/org/webrtc/Size.java", | 697 "java/src/org/webrtc/Size.java", |
| 695 "java/src/org/webrtc/ThreadUtils.java", | 698 "java/src/org/webrtc/ThreadUtils.java", |
| 696 ] | 699 ] |
| 697 | 700 |
| 698 deps = [ | 701 deps = [ |
| 699 "//base:base_java", | 702 "//base:base_java", |
| 700 ] | 703 ] |
| 701 } | 704 } |
| 702 } | 705 } |
| OLD | NEW |