| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 group("audio") { | 8 group("audio") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":audio_server", | 10 ":audio_server", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "audio_server_app.cc", | 28 "audio_server_app.cc", |
| 29 "audio_server_impl.cc", | 29 "audio_server_impl.cc", |
| 30 "audio_track_impl.cc", | 30 "audio_track_impl.cc", |
| 31 "audio_track_to_output_link.cc", | 31 "audio_track_to_output_link.cc", |
| 32 "platform/generic/mix_kernels.cc", | 32 "platform/generic/mix_kernels.cc", |
| 33 "platform/generic/standard_output_base.cc", | 33 "platform/generic/standard_output_base.cc", |
| 34 "platform/generic/throttle_output.cc", | 34 "platform/generic/throttle_output.cc", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 libs = [] | 37 libs = [] |
| 38 |
| 39 if (is_linux) { |
| 40 sources += [ "platform/linux/alsa_output.cc" ] |
| 41 libs += [ "asound" ] |
| 42 } |
| 38 } | 43 } |
| OLD | NEW |