diff options
Diffstat (limited to 'mojo/shell/BUILD.gn')
-rw-r--r-- | mojo/shell/BUILD.gn | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mojo/shell/BUILD.gn b/mojo/shell/BUILD.gn index ad4273f..d5a3843 100644 --- a/mojo/shell/BUILD.gn +++ b/mojo/shell/BUILD.gn @@ -132,6 +132,7 @@ mojo_native_application("apptests") { sources = [ "application_manager_apptest.cc", ] + manifest = [ "application_manager_apptest_manifest.json" ] deps = [ ":test_bindings", @@ -158,6 +159,7 @@ executable("application_manager_apptest_driver") { ] deps = [ + ":copy_application_manager_apptest_driver_manifest", ":test_bindings", "//base", "//base:base_static", @@ -173,6 +175,15 @@ executable("application_manager_apptest_driver") { ] } +copy("copy_application_manager_apptest_driver_manifest") { + sources = [ + "application_manager_apptest_driver_manifest.json", + ] + outputs = [ + "${root_out_dir}/{{source_file_part}}", + ] +} + executable("application_manager_apptest_target") { testonly = true |