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

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

Issue 2839963005: Revert of Creating webrtc/modules:module_api (Closed)
Patch Set: Created 3 years, 8 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/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/video_capture/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 12 matching lines...) Expand all
23 if (!build_with_chromium && is_clang) { 23 if (!build_with_chromium && is_clang) {
24 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 24 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
25 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 25 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
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",
34 "../..:webrtc_common", 33 "../..:webrtc_common",
35 "../../audio/utility:audio_frame_operations", 34 "../../audio/utility:audio_frame_operations",
36 "../../base:rtc_task_queue", 35 "../../base:rtc_task_queue",
37 "../../common_audio", 36 "../../common_audio",
38 "../../system_wrappers", 37 "../../system_wrappers",
39 "../media_file", 38 "../media_file",
40 ] 39 ]
41 } 40 }
42 41
43 if (rtc_include_tests) { 42 if (rtc_include_tests) {
44 rtc_source_set("utility_unittests") { 43 rtc_source_set("utility_unittests") {
45 testonly = true 44 testonly = true
46 45
47 # Skip restricting visibility on mobile platforms since the tests on those 46 # Skip restricting visibility on mobile platforms since the tests on those
48 # gets additional generated targets which would require many lines here to 47 # gets additional generated targets which would require many lines here to
49 # cover (which would be confusing to read and hard to maintain). 48 # cover (which would be confusing to read and hard to maintain).
50 if (!is_android && !is_ios) { 49 if (!is_android && !is_ios) {
51 visibility = [ "//webrtc/modules:modules_unittests" ] 50 visibility = [ "//webrtc/modules:modules_unittests" ]
52 } 51 }
53 sources = [ 52 sources = [
54 "source/process_thread_impl_unittest.cc", 53 "source/process_thread_impl_unittest.cc",
55 ] 54 ]
56 deps = [ 55 deps = [
57 ":utility", 56 ":utility",
58 "..:module_api",
59 "../../base:rtc_task_queue", 57 "../../base:rtc_task_queue",
60 "../../test:test_support", 58 "../../test:test_support",
61 "//testing/gmock", 59 "//testing/gmock",
62 ] 60 ]
63 } 61 }
64 } 62 }
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/modules/video_capture/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698