security/sandbox/chromium/base/base_export.h

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

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