| OLD | NEW | 
|---|
| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 108         "android/audio_record_jni.cc", | 108         "android/audio_record_jni.cc", | 
| 109         "android/audio_record_jni.h", | 109         "android/audio_record_jni.h", | 
| 110         "android/audio_track_jni.cc", | 110         "android/audio_track_jni.cc", | 
| 111         "android/audio_track_jni.h", | 111         "android/audio_track_jni.h", | 
| 112         "android/build_info.cc", | 112         "android/build_info.cc", | 
| 113         "android/build_info.h", | 113         "android/build_info.h", | 
| 114         "android/opensles_common.cc", | 114         "android/opensles_common.cc", | 
| 115         "android/opensles_common.h", | 115         "android/opensles_common.h", | 
| 116         "android/opensles_player.cc", | 116         "android/opensles_player.cc", | 
| 117         "android/opensles_player.h", | 117         "android/opensles_player.h", | 
|  | 118         "android/opensles_recorder.cc", | 
|  | 119         "android/opensles_recorder.h", | 
| 118       ] | 120       ] | 
| 119       libs = [ | 121       libs = [ | 
| 120         "log", | 122         "log", | 
| 121         "OpenSLES", | 123         "OpenSLES", | 
| 122       ] | 124       ] | 
| 123     } | 125     } | 
| 124     if (rtc_use_dummy_audio_file_devices) { | 126     if (rtc_use_dummy_audio_file_devices) { | 
| 125       defines += [ "WEBRTC_DUMMY_FILE_DEVICES" ] | 127       defines += [ "WEBRTC_DUMMY_FILE_DEVICES" ] | 
| 126     } else { | 128     } else { | 
| 127       if (is_linux) { | 129       if (is_linux) { | 
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 255       "../../system_wrappers", | 257       "../../system_wrappers", | 
| 256       "../../test:test_support", | 258       "../../test:test_support", | 
| 257       "../../test:test_support_main", | 259       "../../test:test_support_main", | 
| 258       "../rtp_rtcp", | 260       "../rtp_rtcp", | 
| 259       "../utility", | 261       "../utility", | 
| 260       "//testing/gtest", | 262       "//testing/gtest", | 
| 261     ] | 263     ] | 
| 262     public_configs = [ ":audio_device_config" ] | 264     public_configs = [ ":audio_device_config" ] | 
| 263   } | 265   } | 
| 264 } | 266 } | 
| OLD | NEW | 
|---|