Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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_ |