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

Unified Diff: webrtc/modules/audio_mixer/BUILD.gn

Issue 2249213005: Removals and renamings in the new audio mixer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@new_tests_in_mixer
Patch Set: Set local vars const in tests. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_mixer/audio_mixer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_mixer/BUILD.gn
diff --git a/webrtc/modules/audio_mixer/BUILD.gn b/webrtc/modules/audio_mixer/BUILD.gn
index b6737cb2206e03152f1973b484dce5b32db864cb..3dd5e01b69fb644f0475aeb9d5ef85551d9b4ee4 100644
--- a/webrtc/modules/audio_mixer/BUILD.gn
+++ b/webrtc/modules/audio_mixer/BUILD.gn
@@ -7,55 +7,22 @@
# be found in the AUTHORS file in the root of the source tree.
config("audio_conference_mixer_config") {
- visibility = [ ":*" ] # Only targets in this file can depend on this.
- include_dirs = [
- "include",
- "../../modules/include",
- ]
+ include_dirs = [ "../../modules/include" ]
}
source_set("audio_mixer") {
sources = [
- "audio_mixer.cc",
- "audio_mixer.h",
- ]
- deps = [
- ":audio_conference_mixer",
- "../../voice_engine:voice_engine",
- ]
-
- if (is_win) {
- defines = [ "WEBRTC_DRIFT_COMPENSATION_SUPPORTED" ]
-
- cflags = [
- # TODO(kjellander): Bug 261: fix this warning.
- "/wd4373", # virtual function override.
- ]
- }
-
- configs += [ "../..:common_config" ]
- public_configs = [ "../..:common_inherited_config" ]
-
- if (is_clang) {
- # Suppress warnings from Chrome's Clang plugins.
- # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
- configs -= [ "//build/config/clang:find_bad_constructs" ]
- }
-}
-
-source_set("audio_conference_mixer") {
- sources = [
"audio_frame_manipulator.cc",
"audio_frame_manipulator.h",
+ "audio_mixer.h",
"audio_mixer_defines.h",
- "new_audio_conference_mixer.h",
- "new_audio_conference_mixer_impl.cc",
- "new_audio_conference_mixer_impl.h",
+ "audio_mixer_impl.cc",
+ "audio_mixer_impl.h",
]
public = [
"audio_mixer_defines.h",
- "new_audio_conference_mixer.h",
+ "audio_mixer.h",
]
configs += [ "../..:common_config" ]
« no previous file with comments | « no previous file | webrtc/modules/audio_mixer/audio_mixer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698