[bazel] fix dependency in mask_rom_epmp_test
bazel has a rule to build the autogenerated pwrmgr_reg but not the hjson
file in the parent directory which might be older.
Signed-off-by: Drew Macrae <drewmacrae@google.com>
diff --git a/sw/device/silicon_creator/mask_rom/BUILD b/sw/device/silicon_creator/mask_rom/BUILD
index 2035a83..cfd616c 100644
--- a/sw/device/silicon_creator/mask_rom/BUILD
+++ b/sw/device/silicon_creator/mask_rom/BUILD
@@ -74,7 +74,7 @@
"//hw/ip/edn/data:edn_regs",
"//hw/ip/entropy_src/data:entropy_src_regs",
"//hw/ip/otp_ctrl/data:otp_ctrl_regs",
- "//hw/ip/pwrmgr/data:pwrmgr_regs",
+ "//hw/ip/pwrmgr/data/autogen:pwrmgr_regs",
"//hw/ip/sram_ctrl/data:sram_ctrl_regs",
"//hw/top_earlgrey/ip/ast/data:ast_regs",
"//hw/top_earlgrey/ip/sensor_ctrl/data:sensor_ctrl_regs",
@@ -147,7 +147,7 @@
"//hw/ip/edn/data:edn_regs",
"//hw/ip/entropy_src/data:entropy_src_regs",
"//hw/ip/otp_ctrl/data:otp_ctrl_regs",
- "//hw/ip/pwrmgr/data:pwrmgr_regs",
+ "//hw/ip/pwrmgr/data/autogen:pwrmgr_regs",
"//hw/ip/sram_ctrl/data:sram_ctrl_regs",
"//hw/top_earlgrey/ip/ast/data:ast_regs",
"//hw/top_earlgrey/ip/sensor_ctrl/data:sensor_ctrl_regs",