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

Side by Side Diff: remoting/BUILD.gn

Issue 1010803014: Fixing building of remoting_unittests_apk target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Covering BUILD.gn as well. Created 5 years, 9 months 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 | « no previous file | remoting/client/BUILD.gn » ('j') | remoting/client/plugin/BUILD.gn » ('J')
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("//remoting/remoting_version.gni") 7 import("//remoting/remoting_version.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 enable_remoting_host = is_win || is_mac || is_chromeos || use_x11 10 enable_remoting_host = is_win || is_mac || is_chromeos || use_x11
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 "//remoting/protocol:test_support", 104 "//remoting/protocol:test_support",
105 "//remoting/protocol:unit_tests", 105 "//remoting/protocol:unit_tests",
106 "//testing/gmock", 106 "//testing/gmock",
107 "//testing/gtest", 107 "//testing/gtest",
108 "//third_party/webrtc", 108 "//third_party/webrtc",
109 ] 109 ]
110 110
111 if (is_android) { 111 if (is_android) {
112 deps += [ "//testing/android:native_test_native_code" ] 112 deps += [ "//testing/android:native_test_native_code" ]
113 } else { 113 } else {
114 deps += [ "//remoting/client/plugin" ] 114 deps += [
115 "//remoting/client/plugin",
116 "//remoting/client/plugin:unit_tests",
117 ]
115 } 118 }
116 119
117 if (enable_remoting_host) { 120 if (enable_remoting_host) {
118 deps += [ 121 deps += [
119 "//remoting/codec:unit_tests", 122 "//remoting/codec:unit_tests",
120 "//remoting/host:unit_tests", 123 "//remoting/host:unit_tests",
121 ] 124 ]
122 } 125 }
123 126
124 if (enable_webrtc) { 127 if (enable_webrtc) {
125 deps += [ 128 deps += [
126 "//third_party/libjingle:libjingle_webrtc", 129 "//third_party/libjingle:libjingle_webrtc",
127 "//third_party/libjingle:libpeerconnection", 130 "//third_party/libjingle:libpeerconnection",
128 ] 131 ]
129 } 132 }
130 } 133 }
131 } else { 134 } else {
132 group("remoting_unittests") { 135 group("remoting_unittests") {
133 } 136 }
134 } 137 }
OLDNEW
« no previous file with comments | « no previous file | remoting/client/BUILD.gn » ('j') | remoting/client/plugin/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698