Chromium Code Reviews| Index: chrome/installer/mini_installer/BUILD.gn |
| diff --git a/chrome/installer/mini_installer/BUILD.gn b/chrome/installer/mini_installer/BUILD.gn |
| index a3dcae8d208547f31acbdf06f3d657c57dae44a0..d0a323dc397779962c458d76d9d17ee39653d122 100644 |
| --- a/chrome/installer/mini_installer/BUILD.gn |
| +++ b/chrome/installer/mini_installer/BUILD.gn |
| @@ -5,6 +5,7 @@ |
| import("//build/config/features.gni") |
| import("//build/config/ui.gni") |
| import("//build_overrides/v8.gni") |
| +import("//chrome/test/mini_installer/mini_installer_test.gni") |
| import("//chrome/version.gni") |
| import("//third_party/icu/config.gni") |
| import("//ui/base/ui_features.gni") |
| @@ -38,9 +39,14 @@ source_set("lib") { |
| configs += [ ":mini_installer_compiler_flags" ] |
| - deps = [ |
| - #"test_installer_sentinel", TODO(GYP) bug 521052. |
| - ] |
| + # This input dependency on the mini installer test Python files will force a |
| + # recompilation when any of the Python files have changed. This will then |
| + # invalidate the build and trigger running the test on the bots even when |
| + # no other Chrome files have changed. These have to be inputs rather than a |
| + # dependency because a depedency won't actually trigger recompiles in |
|
brucedawson
2016/06/21 19:59:26
depedency->dependency
|
| + # incremental build cases unless a source file actually references one of the |
| + # dependency outputs. |
| + inputs = mini_installer_test_files |
| } |
| process_version("version") { |