blob: 3759f737601f30b675d89dfac13b93319969b6a3 [file] [log] [blame]
// 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_REMOTE_COCOA_BROWSER_REMOTE_COCOA_BROWSER_EXPORT_H_
#define COMPONENTS_REMOTE_COCOA_BROWSER_REMOTE_COCOA_BROWSER_EXPORT_H_
// Defines REMOTE_COCOA_BROWSER_EXPORT so that functionality implemented by the
// RemoteCocoa browser module can be exported to consumers.
#if defined(COMPONENT_BUILD)
#define REMOTE_COCOA_BROWSER_EXPORT __attribute__((visibility("default")))
#else // defined(COMPONENT_BUILD)
#define REMOTE_COCOA_BROWSER_EXPORT
#endif
#endif // COMPONENTS_REMOTE_COCOA_BROWSER_REMOTE_COCOA_BROWSER_EXPORT_H_