OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//build/util/version.gni") | 7 import("//build/util/version.gni") |
8 import("//remoting/remoting_version.gni") | 8 import("//remoting/remoting_version.gni") |
9 import("//remoting/remoting_enable.gni") | 9 import("//remoting/remoting_enable.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 } | 150 } |
151 | 151 |
152 if (enable_webrtc) { | 152 if (enable_webrtc) { |
153 deps += [ | 153 deps += [ |
154 "//third_party/libjingle:libjingle_webrtc", | 154 "//third_party/libjingle:libjingle_webrtc", |
155 "//third_party/libjingle:libpeerconnection", | 155 "//third_party/libjingle:libpeerconnection", |
156 ] | 156 ] |
157 } | 157 } |
158 | 158 |
159 if (is_android) { | 159 if (is_android) { |
160 apk_deps = [ "//net/android:net_java" ] | 160 deps += [ "//net/android:net_java" ] |
161 } | 161 } |
162 } | 162 } |
163 | 163 |
164 if (enable_remoting_host) { | 164 if (enable_remoting_host) { |
165 test("remoting_perftests") { | 165 test("remoting_perftests") { |
166 sources = [ | 166 sources = [ |
167 "codec/codec_test.cc", | 167 "codec/codec_test.cc", |
168 "codec/codec_test.h", | 168 "codec/codec_test.h", |
169 "codec/video_encoder_vpx_perftest.cc", | 169 "codec/video_encoder_vpx_perftest.cc", |
170 "test/protocol_perftest.cc", | 170 "test/protocol_perftest.cc", |
(...skipping 15 matching lines...) Expand all Loading... |
186 | 186 |
187 if (enable_webrtc) { | 187 if (enable_webrtc) { |
188 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 188 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
189 } | 189 } |
190 } | 190 } |
191 } | 191 } |
192 } else { | 192 } else { |
193 group("remoting_unittests") { | 193 group("remoting_unittests") { |
194 } | 194 } |
195 } | 195 } |
OLD | NEW |