Chromium Code Reviews| Index: webrtc/modules/audio_mixer/BUILD.gn |
| diff --git a/webrtc/modules/audio_mixer/BUILD.gn b/webrtc/modules/audio_mixer/BUILD.gn |
| index 412b4d08f78a6e62665129eefb60ae1f04f893fa..0b676a03af7c8bcb58a58ebd22a41e629c3283ca 100644 |
| --- a/webrtc/modules/audio_mixer/BUILD.gn |
| +++ b/webrtc/modules/audio_mixer/BUILD.gn |
| @@ -8,15 +8,14 @@ |
| import("../../build/webrtc.gni") |
| -config("audio_conference_mixer_config") { |
| - include_dirs = [ "../../modules/include" ] |
| -} |
| - |
| -rtc_static_library("audio_mixer") { |
| +rtc_static_library("audio_mixer_impl") { |
| + visibility = [ |
| + "../../modules/*", |
|
the sun
2016/10/12 15:26:10
Does this mean it is visible to webrtc/modules/? W
aleloi
2016/10/12 15:36:02
The default visibility is that everything is visib
the sun
2016/10/13 07:55:00
Ah, I forgot about the unit test. It would be nice
|
| + "../../audio:audio", |
| + ] |
| sources = [ |
| "audio_frame_manipulator.cc", |
| "audio_frame_manipulator.h", |
| - "audio_mixer.h", |
| "audio_mixer_impl.cc", |
| "audio_mixer_impl.h", |
| "audio_source_with_mix_status.cc", |
| @@ -24,17 +23,15 @@ rtc_static_library("audio_mixer") { |
| ] |
| public = [ |
| - "audio_mixer.h", |
| + "audio_mixer_impl.h", |
| ] |
| - public_configs = [ ":audio_conference_mixer_config" ] |
| - |
| deps = [ |
| "../..:webrtc_common", |
| + "../../api:audio_mixer_api", |
| "../../base:rtc_base_approved", |
| "../../modules/audio_processing", |
| "../../modules/utility", |
| "../../system_wrappers", |
| - "../../voice_engine:level_indicator", |
| ] |
| } |