chromium/components/download/public/common/download_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 COMPONENTS_DOWNLOAD_PUBLIC_COMMON_DOWNLOAD_EXPORT_H_
#define COMPONENTS_DOWNLOAD_PUBLIC_COMMON_DOWNLOAD_EXPORT_H_

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

#if defined(COMPONENTS_DOWNLOAD_IMPLEMENTATION)
#define COMPONENTS_DOWNLOAD_EXPORT
#else
#define COMPONENTS_DOWNLOAD_EXPORT
#endif  // defined(COMPONENTS_DOWNLOAD_IMPLEMENTATION)

#else  // defined(WIN32)
#if defined(COMPONENTS_DOWNLOAD_IMPLEMENTATION)
#define COMPONENTS_DOWNLOAD_EXPORT
#else
#define COMPONENTS_DOWNLOAD_EXPORT
#endif
#endif

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

#endif  // COMPONENTS_DOWNLOAD_PUBLIC_COMMON_DOWNLOAD_EXPORT_H_