Fix more Linux unittest targets. (#5045)

This commit is contained in:
Chinmay Garde 2018-04-18 18:15:50 -07:00 committed by GitHub
parent b6ba69bae7
commit 3cc8d82895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -134,4 +134,7 @@ executable("shell_unittests") {
"//third_party/skia",
"//topaz/lib/tonic",
]
if (is_linux) {
ldflags = [ "-rdynamic" ]
}
}

View File

@ -50,6 +50,10 @@ executable("embedder_unittests") {
":fixtures",
"$flutter_root/testing",
]
if (is_linux) {
ldflags = [ "-rdynamic" ]
}
}
shared_library("flutter_engine") {