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

Side by Side Diff: webrtc/modules/audio_device/BUILD.gn

Issue 2219653004: Remove old methods in AudioTransport, make it pass a gn build (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 8
9 import("../../build/webrtc.gni") 9 import("../../build/webrtc.gni")
10 10
(...skipping 22 matching lines...) Expand all
33 "../../system_wrappers", 33 "../../system_wrappers",
34 "../utility", 34 "../utility",
35 ] 35 ]
36 36
37 sources = [ 37 sources = [
38 "audio_device_buffer.cc", 38 "audio_device_buffer.cc",
39 "audio_device_buffer.h", 39 "audio_device_buffer.h",
40 "audio_device_config.h", 40 "audio_device_config.h",
41 "audio_device_generic.cc", 41 "audio_device_generic.cc",
42 "audio_device_generic.h", 42 "audio_device_generic.h",
43 "audio_transport.cc",
43 "dummy/audio_device_dummy.cc", 44 "dummy/audio_device_dummy.cc",
44 "dummy/audio_device_dummy.h", 45 "dummy/audio_device_dummy.h",
45 "dummy/file_audio_device.cc", 46 "dummy/file_audio_device.cc",
46 "dummy/file_audio_device.h", 47 "dummy/file_audio_device.h",
47 "fine_audio_buffer.cc", 48 "fine_audio_buffer.cc",
48 "fine_audio_buffer.h", 49 "fine_audio_buffer.h",
49 "include/audio_device.h", 50 "include/audio_device.h",
50 "include/audio_device_defines.h", 51 "include/audio_device_defines.h",
51 ] 52 ]
52 53
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 "../..:common_inherited_config", 204 "../..:common_inherited_config",
204 ":audio_device_config", 205 ":audio_device_config",
205 ] 206 ]
206 207
207 if (is_clang) { 208 if (is_clang) {
208 # Suppress warnings from Chrome's Clang plugins. 209 # Suppress warnings from Chrome's Clang plugins.
209 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 210 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
210 configs -= [ "//build/config/clang:find_bad_constructs" ] 211 configs -= [ "//build/config/clang:find_bad_constructs" ]
211 } 212 }
212 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698