security/sandbox/chromium/base/base_export.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
michael@0 2 // Use of this source code is governed by a BSD-style license that can be
michael@0 3 // found in the LICENSE file.
michael@0 4
michael@0 5 #ifndef BASE_BASE_EXPORT_H_
michael@0 6 #define BASE_BASE_EXPORT_H_
michael@0 7
michael@0 8 #if defined(COMPONENT_BUILD)
michael@0 9 #if defined(WIN32)
michael@0 10
michael@0 11 #if defined(BASE_IMPLEMENTATION)
michael@0 12 #define BASE_EXPORT __declspec(dllexport)
michael@0 13 #define BASE_EXPORT_PRIVATE __declspec(dllexport)
michael@0 14 #else
michael@0 15 #define BASE_EXPORT __declspec(dllimport)
michael@0 16 #define BASE_EXPORT_PRIVATE __declspec(dllimport)
michael@0 17 #endif // defined(BASE_IMPLEMENTATION)
michael@0 18
michael@0 19 #else // defined(WIN32)
michael@0 20 #if defined(BASE_IMPLEMENTATION)
michael@0 21 #define BASE_EXPORT __attribute__((visibility("default")))
michael@0 22 #define BASE_EXPORT_PRIVATE __attribute__((visibility("default")))
michael@0 23 #else
michael@0 24 #define BASE_EXPORT
michael@0 25 #define BASE_EXPORT_PRIVATE
michael@0 26 #endif // defined(BASE_IMPLEMENTATION)
michael@0 27 #endif
michael@0 28
michael@0 29 #else // defined(COMPONENT_BUILD)
michael@0 30 #define BASE_EXPORT
michael@0 31 #define BASE_EXPORT_PRIVATE
michael@0 32 #endif
michael@0 33
michael@0 34 #endif // BASE_BASE_EXPORT_H_

mercurial