chromium/gpu/command_buffer/client/webgpu_export.h

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

#ifndef GPU_COMMAND_BUFFER_CLIENT_WEBGPU_EXPORT_H_
#define GPU_COMMAND_BUFFER_CLIENT_WEBGPU_EXPORT_H_

#if defined(COMPONENT_BUILD)
#if defined(WIN32)

#if defined(WEBGPU_IMPLEMENTATION)
#define WEBGPU_EXPORT
#else
#define WEBGPU_EXPORT
#endif  // defined(WEBGPU_IMPLEMENTATION)

#else  // defined(WIN32)
#if defined(WEBGPU_IMPLEMENTATION)
#define WEBGPU_EXPORT
#else
#define WEBGPU_EXPORT
#endif
#endif

#else  // defined(COMPONENT_BUILD)
#define WEBGPU_EXPORT
#endif

#endif  // GPU_COMMAND_BUFFER_CLIENT_WEBGPU_EXPORT_H_