chromium/base/win/win_includes_unittest.cc

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// This file ensures that these header files don't include Windows.h and can
// compile without including Windows.h. This helps to improve compile times.

#include "base/atomicops.h"
#include "base/files/file_util.h"
#include "base/files/platform_file.h"
#include "base/process/process_handle.h"
#include "base/synchronization/condition_variable.h"
#include "base/synchronization/lock.h"
#include "base/threading/platform_thread.h"
#include "base/threading/thread_local_storage.h"
#include "base/win/registry.h"
#include "base/win/scoped_handle.h"
#include "base/win/win_util.h"
#include "partition_alloc/partition_alloc-inl.h"
#include "partition_alloc/partition_tls.h"
#include "partition_alloc/spinning_mutex.h"

#ifdef _WINDOWS_
#error Windows.h was included inappropriately.
#endif

// clang-format off
// Make sure windows.h can be included after windows_types.h
#include "base/win/windows_types.h"
// clang-format on

#include <windows.h>

#include <objidl.h>

// Check that type sizes match.
static_assert(sizeof(CHROME_CONDITION_VARIABLE) == sizeof(CONDITION_VARIABLE),
              "Definition mismatch.");
static_assert(sizeof(CHROME_SRWLOCK) == sizeof(SRWLOCK),
              "Definition mismatch.");
static_assert(sizeof(CHROME_WIN32_FIND_DATA) == sizeof(WIN32_FIND_DATA),
              "Definition mismatch.");
static_assert(sizeof(CHROME_FORMATETC) == sizeof(FORMATETC),
              "Definition mismatch.");
static_assert(sizeof(CHROME_LUID) == sizeof(LUID), "Definition mismatch.");
static_assert(sizeof(CHROME_MSG) == sizeof(MSG), "Definition mismatch.");