| Index: third_party/WebKit/Source/platform/BUILD.gn
|
| diff --git a/third_party/WebKit/Source/platform/BUILD.gn b/third_party/WebKit/Source/platform/BUILD.gn
|
| index ce7a9af6404d50e8ac4f79ca4c656b56822a580d..d60e5d08964f19afc1aadfa5bc29ab2948320f75 100644
|
| --- a/third_party/WebKit/Source/platform/BUILD.gn
|
| +++ b/third_party/WebKit/Source/platform/BUILD.gn
|
| @@ -491,8 +491,6 @@ component("platform") {
|
| "clipboard/ClipboardMimeTypes.h",
|
| "clipboard/ClipboardUtilities.cpp",
|
| "clipboard/ClipboardUtilities.h",
|
| - "clipboard/ClipboardUtilitiesPosix.cpp",
|
| - "clipboard/ClipboardUtilitiesWin.cpp",
|
| "cpu/mips/CommonMacrosMSA.h",
|
| "credentialmanager/PlatformCredential.cpp",
|
| "credentialmanager/PlatformCredential.h",
|
| @@ -1512,9 +1510,8 @@ component("platform") {
|
| }
|
|
|
| if (is_win) {
|
| + sources += [ "clipboard/ClipboardUtilitiesWin.cpp" ]
|
| sources -= [
|
| - "clipboard/ClipboardUtilitiesPosix.cpp",
|
| -
|
| # Uses LocaleWin instead.
|
| "text/LocaleICU.cpp",
|
| "text/LocaleICU.h",
|
| @@ -1524,10 +1521,7 @@ component("platform") {
|
| "/wd4724", # Modulo by 0.
|
| ]
|
| } else {
|
| - sources -= [
|
| - "clipboard/ClipboardUtilitiesWin.cpp",
|
| - "text/LocaleWin.cpp",
|
| - ]
|
| + sources -= [ "text/LocaleWin.cpp" ]
|
| }
|
|
|
| if (is_android) {
|
| @@ -1702,7 +1696,6 @@ test("blink_platform_unittests") {
|
| "animation/CompositorFloatAnimationCurveTest.cpp",
|
| "animation/TimingFunctionTest.cpp",
|
| "blob/BlobDataTest.cpp",
|
| - "clipboard/ClipboardUtilitiesTest.cpp",
|
| "exported/FilePathConversionTest.cpp",
|
| "exported/WebStringTest.cpp",
|
| "feature_policy/FeaturePolicyTest.cpp",
|
|
|