Index: chrome/install_static/BUILD.gn |
diff --git a/chrome/install_static/BUILD.gn b/chrome/install_static/BUILD.gn |
index 3fff4aa255ae5b3b508be0ebaf8e0bb39dd0315e..e4c501e27a7f50dd9c24204035866b9334efe66a 100644 |
--- a/chrome/install_static/BUILD.gn |
+++ b/chrome/install_static/BUILD.gn |
@@ -54,6 +54,24 @@ static_library("install_static_util") { |
] |
} |
+# A source set for use by the module in a process that creates the process-wide |
+# InstallDetails instance. |
+source_set("primary_module") { |
+ sources = [ |
+ "get_install_details_payload.cc", |
+ ] |
+} |
+ |
+# A source set for use by modules in a process that fetch the process-wide |
+# InstallDetails instance from the primary module by way of |
+# GetInstallDetailsPayload. |
+source_set("secondary_module") { |
+ sources = [ |
+ "initialize_from_primary_module.cc", |
+ "initialize_from_primary_module.h", |
+ ] |
+} |
+ |
test("install_static_unittests") { |
output_name = "install_static_unittests" |
sources = [ |