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 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 } | 26 } |
27 | 27 |
28 if (is_ios) { | 28 if (is_ios) { |
29 libs = [ "AVFoundation.framework" ] | 29 libs = [ "AVFoundation.framework" ] |
30 } | 30 } |
31 | 31 |
32 deps = [ | 32 deps = [ |
33 "..:module_api", | 33 "..:module_api", |
34 "../..:webrtc_common", | 34 "../..:webrtc_common", |
35 "../../audio/utility:audio_frame_operations", | 35 "../../audio/utility:audio_frame_operations", |
| 36 "../../base:rtc_task_queue", |
36 "../../common_audio", | 37 "../../common_audio", |
37 "../../rtc_base:rtc_task_queue", | |
38 "../../system_wrappers", | 38 "../../system_wrappers", |
39 "../media_file", | 39 "../media_file", |
40 ] | 40 ] |
41 } | 41 } |
42 | 42 |
43 if (rtc_include_tests) { | 43 if (rtc_include_tests) { |
44 rtc_source_set("utility_unittests") { | 44 rtc_source_set("utility_unittests") { |
45 testonly = true | 45 testonly = true |
46 | 46 |
47 # Skip restricting visibility on mobile platforms since the tests on those | 47 # Skip restricting visibility on mobile platforms since the tests on those |
48 # gets additional generated targets which would require many lines here to | 48 # gets additional generated targets which would require many lines here to |
49 # cover (which would be confusing to read and hard to maintain). | 49 # cover (which would be confusing to read and hard to maintain). |
50 if (!is_android && !is_ios) { | 50 if (!is_android && !is_ios) { |
51 visibility = [ "//webrtc/modules:modules_unittests" ] | 51 visibility = [ "//webrtc/modules:modules_unittests" ] |
52 } | 52 } |
53 sources = [ | 53 sources = [ |
54 "source/process_thread_impl_unittest.cc", | 54 "source/process_thread_impl_unittest.cc", |
55 ] | 55 ] |
56 deps = [ | 56 deps = [ |
57 ":utility", | 57 ":utility", |
58 "..:module_api", | 58 "..:module_api", |
59 "../../rtc_base:rtc_task_queue", | 59 "../../base:rtc_task_queue", |
60 "../../test:test_support", | 60 "../../test:test_support", |
61 "//testing/gmock", | 61 "//testing/gmock", |
62 ] | 62 ] |
63 } | 63 } |
64 } | 64 } |
OLD | NEW |