Index: blimp/client/BUILD.gn |
diff --git a/blimp/client/BUILD.gn b/blimp/client/BUILD.gn |
index 410ba5b0ad601a334138659acbad25d4e7e1087c..605558707e82eb0eb3b64f665670e740f6f7567b 100644 |
--- a/blimp/client/BUILD.gn |
+++ b/blimp/client/BUILD.gn |
@@ -36,6 +36,7 @@ source_set("blimp_client") { |
"//blimp/common/proto", |
"//blimp/net:blimp_net", |
"//cc", |
+ "//components/safe_json", |
"//gpu/skia_bindings", |
"//net", |
"//third_party/libwebp", |
@@ -49,12 +50,6 @@ source_set("blimp_client_unit_tests") { |
sources = [] |
- # TODO(dtrainor): Fix the test harness to allow this to run on Android. |
- # See crbug.com/588240. |
- if (is_linux) { |
- sources += [ "session/assignment_source_unittest.cc" ] |
- } |
- |
deps = [ |
":blimp_client", |
"//base", |
@@ -63,6 +58,19 @@ source_set("blimp_client_unit_tests") { |
"//testing/gmock", |
"//testing/gtest", |
] |
+ |
+ data = [] |
+ |
+ # TODO(dtrainor): Fix the test harness to allow this to run on Android. |
+ # See crbug.com/588240. |
+ if (is_linux) { |
+ sources += [ "session/assignment_source_unittest.cc" ] |
+ deps += [ |
+ "//components/safe_json:test_support", |
+ "//net:test_support", |
+ ] |
+ data += [ "//net/data/ssl/certificates/unittest.selfsigned.pem" ] |
+ } |
} |
source_set("app_unit_tests") { |