ui_chromeos_export.h 542 B

12345678910111213141516171819
  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. #ifndef UI_CHROMEOS_UI_CHROMEOS_EXPORT_H_
  5. #define UI_CHROMEOS_UI_CHROMEOS_EXPORT_H_
  6. #if defined(COMPONENT_BUILD)
  7. #if defined(UI_CHROMEOS_IMPLEMENTATION)
  8. #define UI_CHROMEOS_EXPORT __attribute__((visibility("default")))
  9. #else
  10. #define UI_CHROMEOS_EXPORT
  11. #endif
  12. #else // defined(COMPONENT_BUILD)
  13. #define UI_CHROMEOS_EXPORT
  14. #endif
  15. #endif // UI_CHROMEOS_UI_CHROMEOS_EXPORT_H_