Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(729)

Side by Side Diff: webrtc/modules/utility/BUILD.gn

Issue 3008553002: rtc_task_queue should not expose rtc_base_approved API (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/call/BUILD.gn ('k') | webrtc/rtc_base/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 16 matching lines...) Expand all
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 "../../common_audio", 36 "../../common_audio",
37 "../../rtc_base:rtc_base_approved",
37 "../../rtc_base:rtc_task_queue", 38 "../../rtc_base:rtc_task_queue",
38 "../../system_wrappers", 39 "../../system_wrappers",
39 "../media_file", 40 "../media_file",
40 ] 41 ]
41 } 42 }
42 43
43 rtc_source_set("mock_process_thread") { 44 rtc_source_set("mock_process_thread") {
44 testonly = true 45 testonly = true
45 sources = [ 46 sources = [
46 "include/mock/mock_process_thread.h", 47 "include/mock/mock_process_thread.h",
(...skipping 14 matching lines...) Expand all
61 # cover (which would be confusing to read and hard to maintain). 62 # cover (which would be confusing to read and hard to maintain).
62 if (!is_android && !is_ios) { 63 if (!is_android && !is_ios) {
63 visibility = [ "..:modules_unittests" ] 64 visibility = [ "..:modules_unittests" ]
64 } 65 }
65 sources = [ 66 sources = [
66 "source/process_thread_impl_unittest.cc", 67 "source/process_thread_impl_unittest.cc",
67 ] 68 ]
68 deps = [ 69 deps = [
69 ":utility", 70 ":utility",
70 "..:module_api", 71 "..:module_api",
72 "../../rtc_base:rtc_base_approved",
71 "../../rtc_base:rtc_task_queue", 73 "../../rtc_base:rtc_task_queue",
72 "../../test:test_support", 74 "../../test:test_support",
73 "//testing/gmock", 75 "//testing/gmock",
74 ] 76 ]
75 } 77 }
76 } 78 }
OLDNEW
« no previous file with comments | « webrtc/call/BUILD.gn ('k') | webrtc/rtc_base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698