Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
build unittest target in unopt build
  • Loading branch information
Chris Yang committed Aug 2, 2023
commit 8b55f2b8bb4ada03ed910021d87dc1d53c24eaf9
6 changes: 4 additions & 2 deletions shell/platform/darwin/ios/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ source_set("ios_test_flutter_mrc") {
}

shared_library("ios_test_flutter") {
testonly = true
visibility = [ ":*" ]
cflags = [
"-fvisibility=default",
Expand Down Expand Up @@ -301,7 +300,6 @@ shared_library("ios_test_flutter") {
"framework/Source/connection_collection_test.mm",
]
deps = [
":flutter_framework",
":flutter_framework_source",
":flutter_framework_source_arc",
":ios_gpu_configuration",
Expand Down Expand Up @@ -464,4 +462,8 @@ action("flutter_framework") {
]

deps = [ ":universal_flutter_framework" ]

if (is_debug) {
deps += [ ":ios_test_flutter" ]
}
}