blob: 8178822a8f0fb8c534f4ca80e084aa82b66b3e5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_CHROMEOS_CHROMEOS_EXPORT_H_
#define UI_CHROMEOS_CHROMEOS_EXPORT_H_
#if defined(COMPONENT_BUILD)
#if defined(UI_CHROMEOS_IMPLEMENTATION)
#define UI_CHROMEOS_EXPORT __attribute__((visibility("default")))
#else
#define UI_CHROMEOS_EXPORT
#endif
#else // defined(COMPONENT_BUILD)
#define UI_CHROMEOS_EXPORT
#endif
#endif // UI_CHROMEOS_CHROMEOS_EXPORT_H_
|