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_enable.gni") | 8 import("//remoting/remoting_enable.gni") |
9 import("//remoting/remoting_options.gni") | 9 import("//remoting/remoting_options.gni") |
10 import("//remoting/remoting_version.gni") | 10 import("//remoting/remoting_version.gni") |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 defines = [] | 148 defines = [] |
149 libs = [] | 149 libs = [] |
150 | 150 |
151 configs += [ | 151 configs += [ |
152 ":version", | 152 ":version", |
153 | 153 |
154 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 154 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
155 "//build/config/compiler:no_size_t_to_int_warning", | 155 "//build/config/compiler:no_size_t_to_int_warning", |
156 ] | 156 ] |
157 | 157 |
158 data = [ | |
159 "//net/data/ssl/certificates/ok_cert.pem", | |
160 "//net/data/ssl/certificates/unittest.key.bin", | |
161 "//net/data/ssl/certificates/unittest.selfsigned.der", | |
162 ] | |
163 | |
164 deps = [ | 158 deps = [ |
165 ":test_support", | 159 ":test_support", |
166 "//base", | 160 "//base", |
167 "//google_apis", | 161 "//google_apis", |
168 "//remoting/base:unit_tests", | 162 "//remoting/base:unit_tests", |
169 "//remoting/client:unit_tests", | 163 "//remoting/client:unit_tests", |
170 "//remoting/protocol:unit_tests", | 164 "//remoting/protocol:unit_tests", |
171 "//remoting/signaling:unit_tests", | 165 "//remoting/signaling:unit_tests", |
172 "//remoting/test:unit_tests", | 166 "//remoting/test:unit_tests", |
173 "//testing/gmock", | 167 "//testing/gmock", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 "//testing/gtest", | 218 "//testing/gtest", |
225 "//third_party/libjingle", | 219 "//third_party/libjingle", |
226 "//third_party/webrtc/modules/desktop_capture", | 220 "//third_party/webrtc/modules/desktop_capture", |
227 ] | 221 ] |
228 | 222 |
229 if (enable_webrtc) { | 223 if (enable_webrtc) { |
230 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 224 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
231 } | 225 } |
232 } | 226 } |
233 } | 227 } |
OLD | NEW |