| Index: runtime/bin/test_extension_dllmain_win.cc
|
| diff --git a/runtime/bin/test_extension_dllmain_win.cc b/runtime/bin/test_extension_dllmain_win.cc
|
| index 93b66d64f557133e48f63e3a3ec9bbb7908fbf0f..2cee311019790ce8bef1c1603a5eafd2be1ff258 100644
|
| --- a/runtime/bin/test_extension_dllmain_win.cc
|
| +++ b/runtime/bin/test_extension_dllmain_win.cc
|
| @@ -3,7 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| #include "platform/globals.h"
|
| -#if defined(TARGET_OS_WINDOWS)
|
| +#if defined(HOST_OS_WINDOWS)
|
|
|
| #define WIN32_LEAN_AND_MEAN
|
| #include <windows.h> // NOLINT
|
| @@ -12,4 +12,4 @@ BOOL APIENTRY DllMain(HMODULE module, DWORD reason, LPVOID reserved) {
|
| return true;
|
| }
|
|
|
| -#endif // defined(TARGET_OS_WINDOWS)
|
| +#endif // defined(HOST_OS_WINDOWS)
|
|
|