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

Side by Side Diff: webrtc/voice_engine/BUILD.gn

Issue 2221103004: Broke out 'level_indicator' of the voice_engine GN target. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed (hopefully) win compile issues. Created 4 years, 4 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
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("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 11 matching lines...) Expand all
22 "include/voe_codec.h", 22 "include/voe_codec.h",
23 "include/voe_errors.h", 23 "include/voe_errors.h",
24 "include/voe_external_media.h", 24 "include/voe_external_media.h",
25 "include/voe_file.h", 25 "include/voe_file.h",
26 "include/voe_hardware.h", 26 "include/voe_hardware.h",
27 "include/voe_neteq_stats.h", 27 "include/voe_neteq_stats.h",
28 "include/voe_network.h", 28 "include/voe_network.h",
29 "include/voe_rtp_rtcp.h", 29 "include/voe_rtp_rtcp.h",
30 "include/voe_video_sync.h", 30 "include/voe_video_sync.h",
31 "include/voe_volume_control.h", 31 "include/voe_volume_control.h",
32 "level_indicator.cc",
33 "level_indicator.h",
34 "monitor_module.cc", 32 "monitor_module.cc",
35 "monitor_module.h", 33 "monitor_module.h",
36 "network_predictor.cc", 34 "network_predictor.cc",
37 "network_predictor.h", 35 "network_predictor.h",
38 "output_mixer.cc", 36 "output_mixer.cc",
39 "output_mixer.h", 37 "output_mixer.h",
40 "shared_data.cc", 38 "shared_data.cc",
41 "shared_data.h", 39 "shared_data.h",
42 "statistics.cc", 40 "statistics.cc",
43 "statistics.h", 41 "statistics.h",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "../modules/audio_conference_mixer", 97 "../modules/audio_conference_mixer",
100 "../modules/audio_device", 98 "../modules/audio_device",
101 "../modules/audio_processing", 99 "../modules/audio_processing",
102 "../modules/bitrate_controller", 100 "../modules/bitrate_controller",
103 "../modules/media_file", 101 "../modules/media_file",
104 "../modules/pacing", 102 "../modules/pacing",
105 "../modules/rtp_rtcp", 103 "../modules/rtp_rtcp",
106 "../modules/utility", 104 "../modules/utility",
107 "../system_wrappers", 105 "../system_wrappers",
108 ] 106 ]
107
108 public_deps = [
109 ":level_indicator",
kjellander_webrtc 2016/08/09 21:25:17 does it need to be public?
aleloi 2016/08/10 09:08:04 No, it doesn't. I thought it needed to be public b
110 ]
111 }
112
113 source_set("level_indicator") {
114 sources = [
115 "level_indicator.cc",
116 "level_indicator.h",
117 ]
118
kjellander_webrtc 2016/08/09 21:25:17 Add a dependency on "../common_audio", as well, si
kjellander_webrtc 2016/08/09 21:25:17 Please add dependency on "../base:rtc_base_approve
aleloi 2016/08/10 09:08:04 Done, and also webrtc_common from webrtc/typedefs.
119 configs += [ "..:common_config" ]
120 public_configs = [ "..:common_inherited_config" ]
109 } 121 }
110 122
111 if (rtc_include_tests) { 123 if (rtc_include_tests) {
112 test("voice_engine_unittests") { 124 test("voice_engine_unittests") {
113 deps = [ 125 deps = [
114 ":voice_engine", 126 ":voice_engine",
115 "//testing/gmock", 127 "//testing/gmock",
116 "//testing/gtest", 128 "//testing/gtest",
117 "//webrtc/common_audio", 129 "//webrtc/common_audio",
118 "//webrtc/modules/audio_coding", 130 "//webrtc/modules/audio_coding",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 } 258 }
247 259
248 if (is_clang) { 260 if (is_clang) {
249 # Suppress warnings from Chrome's Clang plugins. 261 # Suppress warnings from Chrome's Clang plugins.
250 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 262 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
251 configs -= [ "//build/config/clang:find_bad_constructs" ] 263 configs -= [ "//build/config/clang:find_bad_constructs" ]
252 } 264 }
253 } 265 }
254 } 266 }
255 } 267 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/voice_engine/level_indicator.h » ('j') | webrtc/voice_engine/level_indicator.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698