diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-10 21:40:28 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-10 21:40:28 +0000 |
commit | d452696d51c8737c0f2c4eada4369aa9530e57bd (patch) | |
tree | d983a1a224845a26f0e6173c8b7e4bc658a29539 /sql/sql_export.h | |
parent | 5b4fc5b7c88b94d0e8b61eddd1c9203723ebd29e (diff) | |
download | chromium_src-d452696d51c8737c0f2c4eada4369aa9530e57bd.zip chromium_src-d452696d51c8737c0f2c4eada4369aa9530e57bd.tar.gz chromium_src-d452696d51c8737c0f2c4eada4369aa9530e57bd.tar.bz2 |
build sql as a component - this will help ensure there is only one copy
of sqlite getting linked in.
R=rsesek@chromium.org
Review URL: http://codereview.chromium.org/8506027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109510 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sql/sql_export.h')
-rw-r--r-- | sql/sql_export.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sql/sql_export.h b/sql/sql_export.h new file mode 100644 index 0000000..92a01cb --- /dev/null +++ b/sql/sql_export.h @@ -0,0 +1,26 @@ +// Copyright (c) 2011 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 SQL_EXPORT_H_ +#define SQL_EXPORT_H_ +#pragma once + +#if defined(COMPONENT_BUILD) +#if defined(WIN32) + +#if defined(SQL_IMPLEMENTATION) +#define SQL_EXPORT __declspec(dllexport) +#else +#define SQL_EXPORT __declspec(dllimport) +#endif // defined(SQL_IMPLEMENTATION) + +#else // defined(WIN32) +#define SQL_EXPORT __attribute__((visibility("default"))) +#endif + +#else // defined(COMPONENT_BUILD) +#define SQL_EXPORT +#endif + +#endif // SQL_EXPORT_H_ |