diff options
author | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 17:38:47 +0000 |
---|---|---|
committer | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 17:38:47 +0000 |
commit | be363b2ae7d3ebc594d6db53313985b07977d80b (patch) | |
tree | 72fda6b181f221cbaa6e438e0fb696bbf47d518b /base/test | |
parent | 42af17eaa9447b313098eca6fd5d018934cd0bbd (diff) | |
download | chromium_src-be363b2ae7d3ebc594d6db53313985b07977d80b.zip chromium_src-be363b2ae7d3ebc594d6db53313985b07977d80b.tar.gz chromium_src-be363b2ae7d3ebc594d6db53313985b07977d80b.tar.bz2 |
First step towards component build for Android.
Add symbol exports needed to build content shell.
BUG=158821
Review URL: https://codereview.chromium.org/11368031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165420 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/test')
-rw-r--r-- | base/test/test_support_android.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/base/test/test_support_android.h b/base/test/test_support_android.h index 40648cd..062785e 100644 --- a/base/test/test_support_android.h +++ b/base/test/test_support_android.h @@ -5,19 +5,21 @@ #ifndef BASE_TEST_TEST_SUPPORT_ANDROID_H_ #define BASE_TEST_TEST_SUPPORT_ANDROID_H_ +#include "base/base_export.h" + namespace base { // Init logging for tests on Android. Logs will be output into Android's logcat. -void InitAndroidTestLogging(); +BASE_EXPORT void InitAndroidTestLogging(); // Init path providers for tests on Android. -void InitAndroidTestPaths(); +BASE_EXPORT void InitAndroidTestPaths(); // Init the message loop for tests on Android. -void InitAndroidTestMessageLoop(); +BASE_EXPORT void InitAndroidTestMessageLoop(); // Do all of the initializations above. -void InitAndroidTest(); +BASE_EXPORT void InitAndroidTest(); } // namespace base |