 Chromium Code Reviews
 Chromium Code Reviews Issue 2682943006:
  Add support for swapping feeds in Android AppRTCMobile.  (Closed)
    
  
    Issue 2682943006:
  Add support for swapping feeds in Android AppRTCMobile.  (Closed) 
  | OLD | NEW | 
|---|---|
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("../webrtc.gni") | 9 import("../webrtc.gni") | 
| 10 if (is_android) { | 10 if (is_android) { | 
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 57 ":AppRTCMobile_javalib", | 57 ":AppRTCMobile_javalib", | 
| 58 ":AppRTCMobile_resources", | 58 ":AppRTCMobile_resources", | 
| 59 "//base:base_java", | 59 "//base:base_java", | 
| 60 "//webrtc/base:base_java", | 60 "//webrtc/base:base_java", | 
| 61 ] | 61 ] | 
| 62 | 62 | 
| 63 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 63 shared_libraries = [ "//webrtc/sdk/android:libjingle_peerconnection_so" ] | 
| 64 } | 64 } | 
| 65 | 65 | 
| 66 android_library("AppRTCMobile_javalib") { | 66 android_library("AppRTCMobile_javalib") { | 
| 67 android_manifest = "androidapp/AndroidManifest.xml" | |
| 
sakal
2017/02/10 08:38:04
This was required. Otherwise linter complains abou
 | |
| 68 | |
| 67 java_files = [ | 69 java_files = [ | 
| 68 "androidapp/src/org/appspot/apprtc/AppRTCAudioManager.java", | 70 "androidapp/src/org/appspot/apprtc/AppRTCAudioManager.java", | 
| 69 "androidapp/src/org/appspot/apprtc/AppRTCBluetoothManager.java", | 71 "androidapp/src/org/appspot/apprtc/AppRTCBluetoothManager.java", | 
| 70 "androidapp/src/org/appspot/apprtc/AppRTCClient.java", | 72 "androidapp/src/org/appspot/apprtc/AppRTCClient.java", | 
| 71 "androidapp/src/org/appspot/apprtc/AppRTCProximitySensor.java", | 73 "androidapp/src/org/appspot/apprtc/AppRTCProximitySensor.java", | 
| 72 "androidapp/src/org/appspot/apprtc/CallActivity.java", | 74 "androidapp/src/org/appspot/apprtc/CallActivity.java", | 
| 73 "androidapp/src/org/appspot/apprtc/CallFragment.java", | 75 "androidapp/src/org/appspot/apprtc/CallFragment.java", | 
| 74 "androidapp/src/org/appspot/apprtc/CaptureQualityController.java", | 76 "androidapp/src/org/appspot/apprtc/CaptureQualityController.java", | 
| 75 "androidapp/src/org/appspot/apprtc/ConnectActivity.java", | 77 "androidapp/src/org/appspot/apprtc/ConnectActivity.java", | 
| 76 "androidapp/src/org/appspot/apprtc/CpuMonitor.java", | 78 "androidapp/src/org/appspot/apprtc/CpuMonitor.java", | 
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 622 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 624 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
| 623 } | 625 } | 
| 624 | 626 | 
| 625 deps = [ | 627 deps = [ | 
| 626 "../p2p:libstunprober", | 628 "../p2p:libstunprober", | 
| 627 "../p2p:rtc_p2p", | 629 "../p2p:rtc_p2p", | 
| 628 "../system_wrappers:field_trial_default", | 630 "../system_wrappers:field_trial_default", | 
| 629 ] | 631 ] | 
| 630 } | 632 } | 
| 631 } | 633 } | 
| OLD | NEW |