Skip to content

Commit

Permalink
Separate unittest to its own group. (flutter#31789)
Browse files Browse the repository at this point in the history
  • Loading branch information
godofredoc authored Mar 3, 2022
1 parent 7ba712e commit c4b3af8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ group("flutter") {

# Compile the engine.
public_deps = [
":unittests",
"//flutter/shell/platform/embedder:flutter_engine",
"//flutter/sky",
]
Expand Down Expand Up @@ -129,7 +130,12 @@ group("flutter") {
current_cpu == "arm64") {
public_deps += [ "//flutter/testing/android_background_image" ]
}
}

group("unittests") {
testonly = true

public_deps = []
if (is_android) {
public_deps +=
[ "//flutter/shell/platform/android:flutter_shell_native_unittests" ]
Expand Down

0 comments on commit c4b3af8

Please sign in to comment.