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

Side by Side Diff: remoting/BUILD.gn

Issue 1465923002: GN: Merge apk_deps and deps in test() template (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for realz this time Created 5 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
« no previous file with comments | « net/BUILD.gn ('k') | testing/test.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | testing/test.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698