| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 458 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 459 } | 459 } |
| 460 deps = [ | 460 deps = [ |
| 461 "..:webrtc_common", | 461 "..:webrtc_common", |
| 462 "../api:transport_api", | 462 "../api:transport_api", |
| 463 "../call", | 463 "../call", |
| 464 "../modules/rtp_rtcp", | 464 "../modules/rtp_rtcp", |
| 465 "../rtc_base:rtc_base_approved", | 465 "../rtc_base:rtc_base_approved", |
| 466 "../rtc_base:sequenced_task_checker", | 466 "../rtc_base:sequenced_task_checker", |
| 467 "../system_wrappers", | 467 "../system_wrappers", |
| 468 "../test:rtp_test_utils", |
| 468 ] | 469 ] |
| 469 public_deps = [ | 470 public_deps = [ |
| 470 ":single_threaded_task_queue", | 471 ":single_threaded_task_queue", |
| 471 ] | 472 ] |
| 472 } | 473 } |
| 473 | 474 |
| 474 rtc_source_set("single_threaded_task_queue") { | 475 rtc_source_set("single_threaded_task_queue") { |
| 475 testonly = true | 476 testonly = true |
| 476 sources = [ | 477 sources = [ |
| 477 "single_threaded_task_queue.cc", | 478 "single_threaded_task_queue.cc", |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 ] | 718 ] |
| 718 deps = [ | 719 deps = [ |
| 719 "../rtc_base:base_java", | 720 "../rtc_base:base_java", |
| 720 "//testing/android/native_test:native_test_java", | 721 "//testing/android/native_test:native_test_java", |
| 721 ] | 722 ] |
| 722 | 723 |
| 723 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 724 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
| 724 no_build_hooks = true | 725 no_build_hooks = true |
| 725 } | 726 } |
| 726 } | 727 } |
| OLD | NEW |