Index: tools/gn/ninja_copy_target_writer_unittest.cc |
diff --git a/tools/gn/ninja_copy_target_writer_unittest.cc b/tools/gn/ninja_copy_target_writer_unittest.cc |
index 44973a7198f8225b1b571cea0498a71d88bbd247..acd27afc299644412a8c23918ad019a7dda0ab8b 100644 |
--- a/tools/gn/ninja_copy_target_writer_unittest.cc |
+++ b/tools/gn/ninja_copy_target_writer_unittest.cc |
@@ -15,7 +15,7 @@ TEST(NinjaCopyTargetWriter, Run) { |
Err err; |
TestWithScope setup; |
- Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
+ Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"), {}); |
target.set_output_type(Target::COPY_FILES); |
target.sources().push_back(SourceFile("//foo/input1.txt")); |
@@ -45,7 +45,7 @@ TEST(NinjaCopyTargetWriter, ToolchainDeps) { |
Err err; |
TestWithScope setup; |
- Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
+ Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"), {}); |
target.set_output_type(Target::COPY_FILES); |
target.sources().push_back(SourceFile("//foo/input1.txt")); |
@@ -72,7 +72,7 @@ TEST(NinjaCopyTargetWriter, OrderOnlyDeps) { |
Err err; |
TestWithScope setup; |
- Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); |
+ Target target(setup.settings(), Label(SourceDir("//foo/"), "bar"), {}); |
target.set_output_type(Target::COPY_FILES); |
target.sources().push_back(SourceFile("//foo/input1.txt")); |
target.action_values().outputs() = |