Index: build/config/compiler/BUILD.gn |
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn |
index 74dec11c3b8b645c5030e3925a0ce950d7167e6e..e06ad70c21fe0a18f46b0d328e98bceac231c452 100644 |
--- a/build/config/compiler/BUILD.gn |
+++ b/build/config/compiler/BUILD.gn |
@@ -580,10 +580,20 @@ config("runtime_library") { |
# smaller. |
if (is_win) { |
configs += [ "//build/config/win:runtime_library" ] |
+ } else if (is_linux) { |
+ configs += [ "//build/config/linux:runtime_library" ] |
+ } else if (is_ios) { |
+ configs += [ "//build/config/ios:runtime_library" ] |
+ } else if (is_mac) { |
+ configs += [ "//build/config/mac:runtime_library" ] |
} else if (is_android) { |
configs += [ "//build/config/android:runtime_library" ] |
} |
+ if (is_posix) { |
+ configs += [ "//build/config/posix:runtime_library" ] |
+ } |
+ |
if (is_component_build) { |
defines += [ "COMPONENT_BUILD" ] |
} |