summaryrefslogtreecommitdiffstats
path: root/google_apis
diff options
context:
space:
mode:
Diffstat (limited to 'google_apis')
-rw-r--r--google_apis/gcm/BUILD.gn30
1 files changed, 16 insertions, 14 deletions
diff --git a/google_apis/gcm/BUILD.gn b/google_apis/gcm/BUILD.gn
index f63aefb..6073e1d 100644
--- a/google_apis/gcm/BUILD.gn
+++ b/google_apis/gcm/BUILD.gn
@@ -106,21 +106,23 @@ source_set("test_support") {
}
# A standalone MCS (mobile connection server) client.
-executable("mcs_probe") {
- testonly = true
- sources = [
- "tools/mcs_probe.cc",
- ]
+if (!is_ios) {
+ executable("mcs_probe") {
+ testonly = true
+ sources = [
+ "tools/mcs_probe.cc",
+ ]
- deps = [
- ":gcm",
- ":test_support",
- "//base",
- "//build/config/sanitizers:deps",
- "//net",
- "//net:test_support",
- "//third_party/protobuf:protobuf_lite",
- ]
+ deps = [
+ ":gcm",
+ ":test_support",
+ "//base",
+ "//build/config/sanitizers:deps",
+ "//net",
+ "//net:test_support",
+ "//third_party/protobuf:protobuf_lite",
+ ]
+ }
}
test("gcm_unit_tests") {