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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 ] | 122 ] |
123 | 123 |
124 data = [ | 124 data = [ |
125 "//net/data/ssl/certificates/ok_cert.pem", | 125 "//net/data/ssl/certificates/ok_cert.pem", |
126 "//net/data/ssl/certificates/unittest.key.bin", | 126 "//net/data/ssl/certificates/unittest.key.bin", |
127 "//net/data/ssl/certificates/unittest.selfsigned.der", | 127 "//net/data/ssl/certificates/unittest.selfsigned.der", |
128 ] | 128 ] |
129 | 129 |
130 deps = [ | 130 deps = [ |
131 ":test_support", | 131 ":test_support", |
132 "//base/allocator", | |
133 "//google_apis", | 132 "//google_apis", |
134 "//remoting/base:unit_tests", | 133 "//remoting/base:unit_tests", |
135 "//remoting/client:unit_tests", | 134 "//remoting/client:unit_tests", |
136 "//remoting/protocol:unit_tests", | 135 "//remoting/protocol:unit_tests", |
137 "//remoting/signaling:unit_tests", | 136 "//remoting/signaling:unit_tests", |
138 "//remoting/test:unit_tests", | 137 "//remoting/test:unit_tests", |
139 "//testing/gmock", | 138 "//testing/gmock", |
140 "//testing/gtest", | 139 "//testing/gtest", |
141 "//third_party/webrtc", | 140 "//third_party/webrtc", |
142 ] | 141 ] |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 183 |
185 if (enable_webrtc) { | 184 if (enable_webrtc) { |
186 deps += [ "//third_party/libjingle:libjingle_webrtc" ] | 185 deps += [ "//third_party/libjingle:libjingle_webrtc" ] |
187 } | 186 } |
188 } | 187 } |
189 } | 188 } |
190 } else { | 189 } else { |
191 group("remoting_unittests") { | 190 group("remoting_unittests") { |
192 } | 191 } |
193 } | 192 } |
OLD | NEW |