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