Index: gn/BUILDCONFIG.gn |
diff --git a/gn/BUILDCONFIG.gn b/gn/BUILDCONFIG.gn |
index 31056bda5f1b9ad11ef66d7a3a8d5a4a8cf425df..681b15b83bad2ce2a2a783c45a3ae79a7cee0765 100644 |
--- a/gn/BUILDCONFIG.gn |
+++ b/gn/BUILDCONFIG.gn |
@@ -27,9 +27,9 @@ is_win = current_os == "win" |
is_posix = !is_win |
-# A component is either a source_set or a shared_library. |
+# A component is either a static or a shared library. |
template("component") { |
- _component_mode = "source_set" |
+ _component_mode = "static_library" |
if (is_component_build) { |
_component_mode = "shared_library" |
} |