summaryrefslogtreecommitdiffstats
path: root/athena/athena_export.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-09 23:01:23 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-09 23:01:23 +0000
commita321c3a006f40f7ac829837aa7e540beab2cb448 (patch)
tree292696d917dc19c3b5af18041a088e2d405961f5 /athena/athena_export.h
parent49fed9b90a097bd010bd2a0c16114bbe33fedd16 (diff)
downloadchromium_src-a321c3a006f40f7ac829837aa7e540beab2cb448.zip
chromium_src-a321c3a006f40f7ac829837aa7e540beab2cb448.tar.gz
chromium_src-a321c3a006f40f7ac829837aa7e540beab2cb448.tar.bz2
athena: Move athena_export.h into common/ directory.
Fix a TODO in athena.gyp. BUG=None TEST=None R=oshima@chromium.org Review URL: https://codereview.chromium.org/371573002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282159 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'athena/athena_export.h')
-rw-r--r--athena/athena_export.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/athena/athena_export.h b/athena/athena_export.h
deleted file mode 100644
index 7abb1fa..0000000
--- a/athena/athena_export.h
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ATHENA_ATHENA_EXPORT_H_
-#define ATHENA_ATHENA_EXPORT_H_
-
-// Defines ATHENA_EXPORT so that functionality implemented by the ATHENA module
-// can be exported to consumers.
-
-#if defined(COMPONENT_BUILD)
-#if defined(WIN32)
-
-#if defined(ATHENA_IMPLEMENTATION)
-#define ATHENA_EXPORT __declspec(dllexport)
-#else
-#define ATHENA_EXPORT __declspec(dllimport)
-#endif // defined(ATHENA_IMPLEMENTATION)
-
-#else // defined(WIN32)
-#if defined(ATHENA_IMPLEMENTATION)
-#define ATHENA_EXPORT __attribute__((visibility("default")))
-#else
-#define ATHENA_EXPORT
-#endif
-#endif
-
-#else // defined(COMPONENT_BUILD)
-#define ATHENA_EXPORT
-#endif
-
-#endif // ATHENA_ATHENA_EXPORT_H_