diff options
author | Brett Wilson <brettw@chromium.org> | 2014-08-26 12:05:21 -0700 |
---|---|---|
committer | Brett Wilson <brettw@chromium.org> | 2014-08-26 19:08:09 +0000 |
commit | 64275214e0ab409050f048cb7e4b4cf30e3df082 (patch) | |
tree | 3efe516b53bfea848a919f7adb49494743c2410f /media | |
parent | 3f2fc908707451c46d322bcea57f8978ea68fdac (diff) | |
download | chromium_src-64275214e0ab409050f048cb7e4b4cf30e3df082.zip chromium_src-64275214e0ab409050f048cb7e4b4cf30e3df082.tar.gz chromium_src-64275214e0ab409050f048cb7e4b4cf30e3df082.tar.bz2 |
Work on GN build of Chrome.
Fixes the rest of the non-rtc and non-vpx linker errors for the chrome target.
BUG=
R=ajwong@chromium.org
Review URL: https://codereview.chromium.org/505853003
Cr-Commit-Position: refs/heads/master@{#291952}
Diffstat (limited to 'media')
-rw-r--r-- | media/audio/BUILD.gn | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/media/audio/BUILD.gn b/media/audio/BUILD.gn index e6ac957..6c928c04 100644 --- a/media/audio/BUILD.gn +++ b/media/audio/BUILD.gn @@ -88,6 +88,12 @@ source_set("audio") { "scoped_task_runner_observer.h", "simple_sources.cc", "simple_sources.h", + "sounds/audio_stream_handler.cc", + "sounds/audio_stream_handler.h", + "sounds/sounds_manager.cc", + "sounds/sounds_manager.h", + "sounds/wav_audio_handler.cc", + "sounds/wav_audio_handler.h", "virtual_audio_input_stream.cc", "virtual_audio_input_stream.h", "virtual_audio_output_stream.cc", @@ -97,17 +103,6 @@ source_set("audio") { libs = [] configs += [ "//media:media_config" ] - if (is_chromeos) { - sources += [ - "sounds/audio_stream_handler.cc", - "sounds/audio_stream_handler.h", - "sounds/sounds_manager.cc", - "sounds/sounds_manager.h", - "sounds/wav_audio_handler.cc", - "sounds/wav_audio_handler.h", - ] - } - if (is_mac) { sources += [ "mac/audio_auhal_mac.cc", |