From e23a2e22ec49b412c3cd5dda6fed2c753f64216e Mon Sep 17 00:00:00 2001 From: Michael Klimushyn Date: Fri, 16 Aug 2019 17:09:09 -0700 Subject: [PATCH] More updates to the Robolectric test harness (#11068) Previously the test wasn't correctly re-building the engine when its files changed on multiple runs of `testing/run_tests.py`. It looks like this is because the test build target wasn't depending on the entire engine Android dependency, so some code changes were being ignored. Update the build. --- shell/platform/android/BUILD.gn | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/platform/android/BUILD.gn b/shell/platform/android/BUILD.gn index 2568032a7aa..6a286f35675 100644 --- a/shell/platform/android/BUILD.gn +++ b/shell/platform/android/BUILD.gn @@ -449,6 +449,7 @@ action("robolectric_tests") { args += rebase_path(sources, root_build_dir) deps = [ + ":android", ":flutter_shell_java", ] }