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("//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 Loading... |
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 } |
OLD | NEW |