Index: BUILD.gn |
diff --git a/BUILD.gn b/BUILD.gn |
index e12a15e5fc6edf25b8fc1614593c33ae4a04256c..15a86eed8658a94df9f9a2ee534f6ad54abda5eb 100644 |
--- a/BUILD.gn |
+++ b/BUILD.gn |
@@ -144,14 +144,14 @@ if (is_fuchsia) { |
} |
mkbootfs_gen = get_label_info("//packages/gn:mkbootfs", "target_gen_dir") |
- user_manifest = "$mkbootfs_gen/user.bootfs.manifest" |
+ system_manifest = "$mkbootfs_gen/system.bootfs.manifest" |
script = "tools/gen_fuchsia_test_manifest.py" |
args = [ |
"-m", |
mode, |
"-u", |
- rebase_path(user_manifest), |
+ rebase_path(system_manifest), |
"-o", |
rebase_path(output_prefix), |
] |
@@ -166,6 +166,9 @@ if (is_fuchsia) { |
"runtime/bin:run_vm_tests", |
] |
+ mkbootfs_gen = get_label_info("//packages/gn:mkbootfs", "target_gen_dir") |
+ boot_manifest = "$mkbootfs_gen/boot.bootfs.manifest" |
+ |
# Compute path to magenta bootdata.bin |
if (current_cpu == "arm64") { |
magenta_bootdata = |
@@ -190,7 +193,9 @@ if (is_fuchsia) { |
script = "//packages/gn/make_bootfs.py" |
args = [ |
- "--manifest", |
+ "--boot-manifest", |
+ rebase_path(boot_manifest), |
+ "--system-manifest", |
rebase_path(input), |
"--output-file", |
rebase_path(output), |