Chromium Code Reviews| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 86 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", | 86 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", |
| 87 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", | 87 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", |
| 88 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", | 88 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", |
| 89 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", | 89 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 deps = [ | 92 deps = [ |
| 93 ":AppRTCMobile_resources", | 93 ":AppRTCMobile_resources", |
| 94 "//webrtc/base:base_java", | 94 "//webrtc/base:base_java", |
| 95 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java", | 95 "//webrtc/examples/androidapp/third_party/autobanh:autobanh_java", |
| 96 "//webrtc/modules/audio_device:audio_device_java", | |
|
sakal
2017/01/18 13:21:44
Is this really needed? //webrtc/sdk/android:libjin
mbonadei
2017/01/19 08:30:45
It seems to be. I tried to comment the dependency
sakal
2017/01/19 09:06:21
It is a shame. It would be nice to be able to just
mbonadei
2017/01/19 21:20:03
Yes it is, I think there will be some good reasons
| |
| 96 "//webrtc/sdk/android:libjingle_peerconnection_java", | 97 "//webrtc/sdk/android:libjingle_peerconnection_java", |
| 97 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", | 98 "//webrtc/sdk/android:libjingle_peerconnection_metrics_default_java", |
| 98 ] | 99 ] |
| 99 } | 100 } |
| 100 | 101 |
| 101 android_resources("AppRTCMobile_resources") { | 102 android_resources("AppRTCMobile_resources") { |
| 102 resource_dirs = [ "androidapp/res" ] | 103 resource_dirs = [ "androidapp/res" ] |
| 103 custom_package = "org.appspot.apprtc" | 104 custom_package = "org.appspot.apprtc" |
| 104 } | 105 } |
| 105 | 106 |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 608 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 609 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 609 } | 610 } |
| 610 | 611 |
| 611 deps = [ | 612 deps = [ |
| 612 "../p2p:libstunprober", | 613 "../p2p:libstunprober", |
| 613 "../p2p:rtc_p2p", | 614 "../p2p:rtc_p2p", |
| 614 "../system_wrappers:field_trial_default", | 615 "../system_wrappers:field_trial_default", |
| 615 ] | 616 ] |
| 616 } | 617 } |
| 617 } | 618 } |
| OLD | NEW |