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

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

Issue 2533573002: Move ADM specific Android files into modules/audio_device/android/ (Closed)
Patch Set: re-add dep Created 4 years 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 sources += [ 103 sources += [
104 "android/audio_device_template.h", 104 "android/audio_device_template.h",
105 "android/audio_manager.cc", 105 "android/audio_manager.cc",
106 "android/audio_manager.h", 106 "android/audio_manager.h",
107 "android/audio_record_jni.cc", 107 "android/audio_record_jni.cc",
108 "android/audio_record_jni.h", 108 "android/audio_record_jni.h",
109 "android/audio_track_jni.cc", 109 "android/audio_track_jni.cc",
110 "android/audio_track_jni.h", 110 "android/audio_track_jni.h",
111 "android/build_info.cc", 111 "android/build_info.cc",
112 "android/build_info.h", 112 "android/build_info.h",
113 "android/helpers_android.cc",
114 "android/helpers_android.h",
115 "android/jvm_android.cc",
116 "android/jvm_android.h",
113 "android/opensles_common.cc", 117 "android/opensles_common.cc",
114 "android/opensles_common.h", 118 "android/opensles_common.h",
115 "android/opensles_player.cc", 119 "android/opensles_player.cc",
116 "android/opensles_player.h", 120 "android/opensles_player.h",
117 "android/opensles_recorder.cc", 121 "android/opensles_recorder.cc",
118 "android/opensles_recorder.h", 122 "android/opensles_recorder.h",
119 ] 123 ]
120 libs = [ 124 libs = [
121 "log", 125 "log",
122 "OpenSLES", 126 "OpenSLES",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "../../system_wrappers", 288 "../../system_wrappers",
285 "../../test:test_support", 289 "../../test:test_support",
286 "../../test:test_support_main", 290 "../../test:test_support_main",
287 "../rtp_rtcp", 291 "../rtp_rtcp",
288 "../utility", 292 "../utility",
289 "//testing/gtest", 293 "//testing/gtest",
290 ] 294 ]
291 public_configs = [ ":audio_device_config" ] 295 public_configs = [ ":audio_device_config" ]
292 } 296 }
293 } 297 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698