Commit 66f935ee authored by yutak's avatar yutak Committed by Commit bot

Change the target type of platform_wtf to source_set.

A CL (https://codereview.chromium.org/2741343017) failed to compile on
Windows Debug try bots because files in wtf/ lacked __declspec(dllimport)
even though they need to import symbols defined in platform_wtf.

Conceptually, platform_wtf and wtf are a single link unit, thus the target
type of "component" was inappropriate; it should have been "source_set"
instead.

This change is supposed to fix the compile error mentioned above.

BUG=691465

Review-Url: https://codereview.chromium.org/2760573002
Cr-Commit-Position: refs/heads/master@{#457743}
parent 944aaecb
...@@ -57,7 +57,7 @@ config("wtf_config") { ...@@ -57,7 +57,7 @@ config("wtf_config") {
} }
} }
component("platform_wtf") { source_set("platform_wtf") {
sources = [ sources = [
"AddressSanitizer.h", "AddressSanitizer.h",
"Alignment.h", "Alignment.h",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment