Commit 284db8b8 authored by Fabrice de Gans-Riberi's avatar Fabrice de Gans-Riberi Committed by Commit Bot

Prepare for |is_posix| switch in the Fuchsia build in blink

|is_posix| will be switched to false for Fuchsia, this is a preliminary change.

Bug: 812974
Change-Id: I13429e796618d3773df720259d672ae26d2390b8
Reviewed-on: https://chromium-review.googlesource.com/988810Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Reviewed-by: default avatarDirk Pranke <dpranke@chromium.org>
Commit-Queue: Fabrice de Gans-Riberi <fdegans@chromium.org>
Cr-Commit-Position: refs/heads/master@{#548162}
parent 7c7b1aeb
...@@ -84,7 +84,7 @@ blink_modules_sources("webdatabase") { ...@@ -84,7 +84,7 @@ blink_modules_sources("webdatabase") {
if (is_win) { if (is_win) {
sources += [ "sqlite/SQLiteFileSystemWin.cpp" ] sources += [ "sqlite/SQLiteFileSystemWin.cpp" ]
} else if (is_posix) { } else if (is_posix || is_fuchsia) {
sources += [ "sqlite/SQLiteFileSystemPosix.cpp" ] sources += [ "sqlite/SQLiteFileSystemPosix.cpp" ]
} }
......
...@@ -1936,7 +1936,7 @@ jumbo_source_set("blink_platform_unittests_sources") { ...@@ -1936,7 +1936,7 @@ jumbo_source_set("blink_platform_unittests_sources") {
sources += [ "text/LocaleWinTest.cpp" ] sources += [ "text/LocaleWinTest.cpp" ]
} else if (is_mac) { } else if (is_mac) {
sources += [ "text/LocaleMacTest.cpp" ] sources += [ "text/LocaleMacTest.cpp" ]
} else if (is_posix) { } else if (is_posix || is_fuchsia) {
sources += [ "text/LocaleICUTest.cpp" ] sources += [ "text/LocaleICUTest.cpp" ]
} }
......
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