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

Side by Side Diff: media/audio/BUILD.gn

Issue 844643005: Fix few compilation errors on Windows in media/ during Windows GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Linux build. Created 5 years, 11 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
« no previous file with comments | « no previous file | media/cast/BUILD.gn » ('j') | media/cast/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//media/media_options.gni") 6 import("//media/media_options.gni")
7 7
8 # When libpulse is not directly linked, use stubs to allow for dlopening of the 8 # When libpulse is not directly linked, use stubs to allow for dlopening of the
9 # binary. 9 # binary.
10 if (!link_pulseaudio) { 10 if (!link_pulseaudio) {
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 "//testing/gmock", 259 "//testing/gmock",
260 ] 260 ]
261 configs += [ "//media:media_config" ] 261 configs += [ "//media:media_config" ]
262 } 262 }
263 263
264 source_set("unittests") { 264 source_set("unittests") {
265 testonly = true 265 testonly = true
266 sources = [ 266 sources = [
267 "audio_input_controller_unittest.cc", 267 "audio_input_controller_unittest.cc",
268 "audio_input_unittest.cc", 268 "audio_input_unittest.cc",
269 "audio_low_latency_input_output_unittest.cc",
Slava Chigrin 2015/01/18 22:12:25 Same as in GYP, see https://code.google.com/p/chro
270 "audio_manager_unittest.cc", 269 "audio_manager_unittest.cc",
271 "audio_output_controller_unittest.cc", 270 "audio_output_controller_unittest.cc",
272 "audio_output_device_unittest.cc", 271 "audio_output_device_unittest.cc",
273 "audio_output_proxy_unittest.cc", 272 "audio_output_proxy_unittest.cc",
274 "audio_parameters_unittest.cc", 273 "audio_parameters_unittest.cc",
275 "audio_power_monitor_unittest.cc", 274 "audio_power_monitor_unittest.cc",
276 "fake_audio_consumer_unittest.cc", 275 "fake_audio_consumer_unittest.cc",
277 "simple_sources_unittest.cc", 276 "simple_sources_unittest.cc",
278 "virtual_audio_input_stream_unittest.cc", 277 "virtual_audio_input_stream_unittest.cc",
279 "virtual_audio_output_stream_unittest.cc", 278 "virtual_audio_output_stream_unittest.cc",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 sources += [ 319 sources += [
321 "win/audio_device_listener_win_unittest.cc", 320 "win/audio_device_listener_win_unittest.cc",
322 "win/audio_low_latency_input_win_unittest.cc", 321 "win/audio_low_latency_input_win_unittest.cc",
323 "win/audio_low_latency_output_win_unittest.cc", 322 "win/audio_low_latency_output_win_unittest.cc",
324 "win/audio_output_win_unittest.cc", 323 "win/audio_output_win_unittest.cc",
325 "win/core_audio_util_win_unittest.cc", 324 "win/core_audio_util_win_unittest.cc",
326 ] 325 ]
327 } 326 }
328 327
329 if (use_alsa) { 328 if (use_alsa) {
330 sources += [ "alsa/alsa_output_unittest.cc" ] 329 sources += [
330 "alsa/alsa_output_unittest.cc",
331 "audio_low_latency_input_output_unittest.cc",
332 ]
331 } 333 }
332 } 334 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/BUILD.gn » ('j') | media/cast/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698