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

Side by Side Diff: webrtc/sound/BUILD.gn

Issue 1419413002: Fix for Win GN Build. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 import("../build/webrtc.gni") 8 import("../build/webrtc.gni")
9 9
10 static_library("rtc_sound") { 10 static_library("rtc_sound") {
(...skipping 10 matching lines...) Expand all
21 "sounddevicelocator.h", 21 "sounddevicelocator.h",
22 "soundinputstreaminterface.h", 22 "soundinputstreaminterface.h",
23 "soundoutputstreaminterface.h", 23 "soundoutputstreaminterface.h",
24 "soundsystemfactory.h", 24 "soundsystemfactory.h",
25 "soundsysteminterface.cc", 25 "soundsysteminterface.cc",
26 "soundsysteminterface.h", 26 "soundsysteminterface.h",
27 "soundsystemproxy.cc", 27 "soundsystemproxy.cc",
28 "soundsystemproxy.h", 28 "soundsystemproxy.h",
29 ] 29 ]
30 30
31 configs += [ "..:common_config" ]
32 public_configs = [ "..:common_inherited_config" ]
33
31 if (is_clang) { 34 if (is_clang) {
32 # Suppress warnings from Chrome's Clang plugins. 35 # Suppress warnings from Chrome's Clang plugins.
33 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 36 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
34 configs -= [ "//build/config/clang:find_bad_constructs" ] 37 configs -= [ "//build/config/clang:find_bad_constructs" ]
35 } 38 }
36 39
37 deps = [ 40 deps = [
38 "../base:rtc_base", 41 "../base:rtc_base",
39 ] 42 ]
40 43
41 if (is_linux) { 44 if (is_linux) {
42 sources += [ 45 sources += [
43 "alsasoundsystem.cc", 46 "alsasoundsystem.cc",
44 "alsasoundsystem.h", 47 "alsasoundsystem.h",
45 "alsasymboltable.cc", 48 "alsasymboltable.cc",
46 "alsasymboltable.h", 49 "alsasymboltable.h",
47 "linuxsoundsystem.cc", 50 "linuxsoundsystem.cc",
48 "linuxsoundsystem.h", 51 "linuxsoundsystem.h",
49 "pulseaudiosoundsystem.cc", 52 "pulseaudiosoundsystem.cc",
50 "pulseaudiosoundsystem.h", 53 "pulseaudiosoundsystem.h",
51 "pulseaudiosymboltable.cc", 54 "pulseaudiosymboltable.cc",
52 "pulseaudiosymboltable.h", 55 "pulseaudiosymboltable.h",
53 ] 56 ]
54 } 57 }
55 } 58 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698