Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: webrtc/test/BUILD.gn

Issue 2917903002: Fix running unittests on iOS simulator (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/BUILD.gn
diff --git a/webrtc/test/BUILD.gn b/webrtc/test/BUILD.gn
index 0d234cd6e3eb24d9d779b74219dd916363ad9200..e4c67b36c52004500ff3d63423b3a432c3aca1aa 100644
--- a/webrtc/test/BUILD.gn
+++ b/webrtc/test/BUILD.gn
@@ -162,9 +162,10 @@ if (!build_with_chromium) {
# so if a target depends on this BUILD.gn file we hit this error.
rtc_source_set("test_main") {
testonly = true
- sources = [
- "test_main.cc",
- ]
+ sources = []
+ if (!is_ios) {
+ sources += [ "test_main.cc" ]
+ }
public_deps = [
":test_support",
@@ -177,6 +178,12 @@ if (!build_with_chromium) {
"//testing/gtest",
"//third_party/gflags",
]
+
+ # TODO(oprypin): Bug 7758: integrate the iOS unittest support into WebRTC's
+ # test_main instead of replacing it with Chromium's main function.
+ if (is_ios) {
+ deps += [ "//base/test:run_all_unittests" ]
+ }
}
rtc_source_set("video_test_support") {
« no previous file with comments | « webrtc/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698