Index: remoting/BUILD.gn |
diff --git a/remoting/BUILD.gn b/remoting/BUILD.gn |
index 9e5a0a7127b5cf24788bab0b574584773fc5163b..4895f28df041c0554177460959d83c4ff3776a2a 100644 |
--- a/remoting/BUILD.gn |
+++ b/remoting/BUILD.gn |
@@ -101,6 +101,15 @@ source_set("test_support") { |
# TODO(GYP) remoting_unittests on Mac. Needs to be tested. |
if (!is_mac) { |
+ # TODO(GYP): Delete this after we've converted everything to GN. |
+ # The _run targets exist only for compatibility w/ GYP. |
+ group("remoting_unittests_run") { |
+ testonly = true |
+ deps = [ |
+ ":remoting_unittests", |
+ ] |
+ } |
+ |
test("remoting_unittests") { |
configs += [ |
":version", |
@@ -109,6 +118,12 @@ if (!is_mac) { |
"//build/config/compiler:no_size_t_to_int_warning", |
] |
+ data = [ |
+ "//net/data/ssl/certificates/ok_cert.pem", |
+ "//net/data/ssl/certificates/unittest.key.bin", |
+ "//net/data/ssl/certificates/unittest.selfsigned.der", |
+ ] |
+ |
deps = [ |
":test_support", |
"//base/allocator", |