blob: 5c6503031328972395329b16459646305dcd3bc0 [file] [log] [blame]
// Copyright 2020 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_CAST_CAST_COMPONENT_EXPORT_H_
#define COMPONENTS_CAST_CAST_COMPONENT_EXPORT_H_
#if defined(COMPONENT_BUILD) && defined(CAST_COMPONENT_IMPLEMENTATION)
#define CAST_COMPONENT_EXPORT __attribute__((visibility("default")))
#else // !defined(COMPONENT_BUILD) ||
// !defined(CAST_COMPONENT_EXPORT)
#define CAST_COMPONENT_EXPORT
#endif
#endif // COMPONENTS_CAST_CAST_COMPONENT_EXPORT_H_