| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 defines = [] | 149 defines = [] |
| 150 libs = [] | 150 libs = [] |
| 151 | 151 |
| 152 configs += [ | 152 configs += [ |
| 153 ":version", | 153 ":version", |
| 154 | 154 |
| 155 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 155 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 156 "//build/config/compiler:no_size_t_to_int_warning", | 156 "//build/config/compiler:no_size_t_to_int_warning", |
| 157 ] | 157 ] |
| 158 | 158 |
| 159 data = [ | |
| 160 "//net/data/ssl/certificates/ok_cert.pem", | |
| 161 "//net/data/ssl/certificates/unittest.key.bin", | |
| 162 "//net/data/ssl/certificates/unittest.selfsigned.der", | |
| 163 ] | |
| 164 | |
| 165 deps = [ | 159 deps = [ |
| 166 ":test_support", | 160 ":test_support", |
| 167 "//base", | 161 "//base", |
| 168 "//google_apis", | 162 "//google_apis", |
| 169 "//remoting/base:unit_tests", | 163 "//remoting/base:unit_tests", |
| 170 "//remoting/client:unit_tests", | 164 "//remoting/client:unit_tests", |
| 171 "//remoting/protocol:unit_tests", | 165 "//remoting/protocol:unit_tests", |
| 172 "//remoting/signaling:unit_tests", | 166 "//remoting/signaling:unit_tests", |
| 173 "//remoting/test:unit_tests", | 167 "//remoting/test:unit_tests", |
| 174 "//testing/gmock", | 168 "//testing/gmock", |
| 175 "//testing/gtest", | 169 "//testing/gtest", |
| 176 "//third_party/webrtc", | 170 "//third_party/webrtc", |
| 177 ] | 171 ] |
| 178 | 172 |
| 173 data_deps = [ |
| 174 "//net:test_support", |
| 175 ] |
| 176 |
| 179 if (enable_remoting_host) { | 177 if (enable_remoting_host) { |
| 180 deps += [ | 178 deps += [ |
| 181 "//remoting/codec:unit_tests", | 179 "//remoting/codec:unit_tests", |
| 182 "//remoting/host:unit_tests", | 180 "//remoting/host:unit_tests", |
| 183 "//ui/gfx", | 181 "//ui/gfx", |
| 184 ] | 182 ] |
| 185 } | 183 } |
| 186 | 184 |
| 187 if (enable_webrtc) { | 185 if (enable_webrtc) { |
| 188 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 186 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 | 227 |
| 230 if (enable_webrtc) { | 228 if (enable_webrtc) { |
| 231 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 229 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
| 232 } | 230 } |
| 233 } | 231 } |
| 234 } | 232 } |
| 235 } else { | 233 } else { |
| 236 group("remoting_unittests") { | 234 group("remoting_unittests") { |
| 237 } | 235 } |
| 238 } | 236 } |
| OLD | NEW |