| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_ | 5 #ifndef SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_ |
| 6 #define SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_ | 6 #define SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_ |
| 7 | 7 |
| 8 #if defined(COMPONENT_BUILD) | 8 #if defined(COMPONENT_BUILD) |
| 9 #if defined(WIN32) |
| 9 | 10 |
| 10 #if defined(SKY_VIEWER_CC_IMPLEMENTATION) | 11 #if defined(SKY_VIEWER_CC_IMPLEMENTATION) |
| 12 #define SKY_VIEWER_CC_EXPORT __declspec(dllexport) |
| 13 #else |
| 14 #define SKY_VIEWER_CC_EXPORT __declspec(dllimport) |
| 15 #endif // defined(SKY_VIEWER_CC_IMPLEMENTATION) |
| 16 |
| 17 #else // defined(WIN32) |
| 18 #if defined(SKY_VIEWER_CC_IMPLEMENTATION) |
| 11 #define SKY_VIEWER_CC_EXPORT __attribute__((visibility("default"))) | 19 #define SKY_VIEWER_CC_EXPORT __attribute__((visibility("default"))) |
| 12 #else | 20 #else |
| 13 #define SKY_VIEWER_CC_EXPORT | 21 #define SKY_VIEWER_CC_EXPORT |
| 14 #endif | 22 #endif |
| 23 #endif |
| 15 | 24 |
| 16 #else // defined(COMPONENT_BUILD) | 25 #else // defined(COMPONENT_BUILD) |
| 17 #define SKY_VIEWER_CC_EXPORT | 26 #define SKY_VIEWER_CC_EXPORT |
| 18 #endif | 27 #endif |
| 19 | 28 |
| 20 #endif // SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_ | 29 #endif // SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_ |
| OLD | NEW |