Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(369)

Side by Side Diff: sky/viewer/cc/sky_viewer_cc_export.h

Issue 714393002: Remove support for MSVC (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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)
10 9
11 #if defined(SKY_VIEWER_CC_IMPLEMENTATION) 10 #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)
19 #define SKY_VIEWER_CC_EXPORT __attribute__((visibility("default"))) 11 #define SKY_VIEWER_CC_EXPORT __attribute__((visibility("default")))
abarth-chromium 2014/11/12 00:28:14 You can remove all this FOO_EXPORT stuff. It's fo
20 #else 12 #else
21 #define SKY_VIEWER_CC_EXPORT 13 #define SKY_VIEWER_CC_EXPORT
22 #endif 14 #endif
23 #endif
24 15
25 #else // defined(COMPONENT_BUILD) 16 #else // defined(COMPONENT_BUILD)
26 #define SKY_VIEWER_CC_EXPORT 17 #define SKY_VIEWER_CC_EXPORT
27 #endif 18 #endif
28 19
29 #endif // SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_ 20 #endif // SKY_VIEWER_CC_SKY_VIEWER_CC_EXPORT_H_
OLDNEW
« sky/engine/wtf/Assertions.h ('K') | « sky/engine/wtf/text/WTFString.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698