| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("audio_coding/audio_coding.gni") | 10 import("audio_coding/audio_coding.gni") |
| 11 | 11 |
| 12 group("modules") { | 12 group("modules") { |
| 13 public_deps = [ | 13 public_deps = [ |
| 14 "audio_coding", | 14 "audio_coding", |
| 15 "audio_conference_mixer", | |
| 16 "audio_device", | 15 "audio_device", |
| 17 "audio_mixer", | 16 "audio_mixer", |
| 18 "audio_processing", | 17 "audio_processing", |
| 19 "bitrate_controller", | 18 "bitrate_controller", |
| 20 "congestion_controller", | 19 "congestion_controller", |
| 21 "desktop_capture", | 20 "desktop_capture", |
| 22 "media_file", | 21 "media_file", |
| 23 "pacing", | 22 "pacing", |
| 24 "remote_bitrate_estimator", | 23 "remote_bitrate_estimator", |
| 25 "rtp_rtcp", | 24 "rtp_rtcp", |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 224 |
| 226 if (!build_with_chromium && is_clang) { | 225 if (!build_with_chromium && is_clang) { |
| 227 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 226 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 228 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 227 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 229 } | 228 } |
| 230 | 229 |
| 231 deps = [ | 230 deps = [ |
| 232 ":module_api", | 231 ":module_api", |
| 233 "../test:test_main", | 232 "../test:test_main", |
| 234 "audio_coding:audio_coding_unittests", | 233 "audio_coding:audio_coding_unittests", |
| 235 "audio_conference_mixer:audio_conference_mixer_unittests", | |
| 236 "audio_device:audio_device_unittests", | 234 "audio_device:audio_device_unittests", |
| 237 "audio_mixer:audio_mixer_unittests", | 235 "audio_mixer:audio_mixer_unittests", |
| 238 "audio_processing:audio_processing_unittests", | 236 "audio_processing:audio_processing_unittests", |
| 239 "bitrate_controller:bitrate_controller_unittests", | 237 "bitrate_controller:bitrate_controller_unittests", |
| 240 "congestion_controller:congestion_controller_unittests", | 238 "congestion_controller:congestion_controller_unittests", |
| 241 "desktop_capture:desktop_capture_unittests", | 239 "desktop_capture:desktop_capture_unittests", |
| 242 "media_file:media_file_unittests", | 240 "media_file:media_file_unittests", |
| 243 "pacing:pacing_unittests", | 241 "pacing:pacing_unittests", |
| 244 "remote_bitrate_estimator:remote_bitrate_estimator_unittests", | 242 "remote_bitrate_estimator:remote_bitrate_estimator_unittests", |
| 245 "rtp_rtcp:rtp_rtcp_unittests", | 243 "rtp_rtcp:rtp_rtcp_unittests", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 259 shard_timeout = 900 | 257 shard_timeout = 900 |
| 260 } | 258 } |
| 261 if (is_ios) { | 259 if (is_ios) { |
| 262 info_plist = "../test/ios/Info.plist" | 260 info_plist = "../test/ios/Info.plist" |
| 263 deps += [ ":modules_unittests_bundle_data" ] | 261 deps += [ ":modules_unittests_bundle_data" ] |
| 264 configs += [ "..:common_objc" ] | 262 configs += [ "..:common_objc" ] |
| 265 ldflags = [ "-ObjC" ] | 263 ldflags = [ "-ObjC" ] |
| 266 } | 264 } |
| 267 } | 265 } |
| 268 } | 266 } |
| OLD | NEW |