Commit 69030f44 authored by jingzhao@chromium.org's avatar jingzhao@chromium.org

Upstream: Third-party change to build net_unittests for Android.


BUG=
TEST=


Review URL: http://codereview.chromium.org/8547010

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111305 0039d316-1c4b-4281-b951-d872f2087c98
parent 57f5c1e4
...@@ -5,16 +5,28 @@ ...@@ -5,16 +5,28 @@
#define HASH_MAP_CLASS hash_map #define HASH_MAP_CLASS hash_map
/* the location of <hash_map> */ /* the location of <hash_map> */
#if defined(USE_STLPORT)
#define HASH_MAP_H <hash_map>
#else
#define HASH_MAP_H <ext/hash_map> #define HASH_MAP_H <ext/hash_map>
#endif
/* the namespace of hash_map/hash_set */ /* the namespace of hash_map/hash_set */
#if defined(USE_STLPORT)
#define HASH_NAMESPACE std
#else
#define HASH_NAMESPACE __gnu_cxx #define HASH_NAMESPACE __gnu_cxx
#endif
/* the name of <hash_set> */ /* the name of <hash_set> */
#define HASH_SET_CLASS hash_set #define HASH_SET_CLASS hash_set
/* the location of <hash_set> */ /* the location of <hash_set> */
#if defined(USE_STLPORT)
#define HASH_SET_H <hash_set>
#else
#define HASH_SET_H <ext/hash_set> #define HASH_SET_H <ext/hash_set>
#endif
/* Define to 1 if you have the <dlfcn.h> header file. */ /* Define to 1 if you have the <dlfcn.h> header file. */
#define HAVE_DLFCN_H 1 #define HAVE_DLFCN_H 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment