blob: decebae81441370b90c461f697d28945dde6d66c [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)
#define CAST_COMPONENT_EXPORT __attribute__((visibility("default")))
#else // !defined(COMPONENT_BUILD)
#define CAST_COMPONENT_EXPORT
#endif
#endif // COMPONENTS_CAST_CAST_COMPONENT_EXPORT_H_