diff options
author | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-08 18:20:37 +0000 |
---|---|---|
committer | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-08 18:20:37 +0000 |
commit | 01f42660659e45edd7c0a4ad8ecd7a6bb00e370e (patch) | |
tree | 3f41d81dce4744debf35d70898d24cbfa19dbbca /third_party/expat | |
parent | c9d9b528c1b181f9b4bcf82947b10327b4759b2d (diff) | |
download | chromium_src-01f42660659e45edd7c0a4ad8ecd7a6bb00e370e.zip chromium_src-01f42660659e45edd7c0a4ad8ecd7a6bb00e370e.tar.gz chromium_src-01f42660659e45edd7c0a4ad8ecd7a6bb00e370e.tar.bz2 |
Part 1 of making sync work on Mac:
- Add high res timer class for mac (we might eventually replace all timer classes with Chrome ones)
- Define POSIX for OS==mac where needed
- Add new liens at the end of some files since otherwise they produce errors on Mac
- Rearrange initializer list of constructors to match declaration order in header; these become warning as error.
- Some chrome.gyp magic
At this point the code compiles but doesn't link due to some missing code on Mac like SSL stuff. But
I thought this was a good check point.
Note that chrome.gyp magic might change in future.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/255053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28414 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/expat')
-rw-r--r-- | third_party/expat/expat.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/expat/expat.gyp b/third_party/expat/expat.gyp index e0ac29d..3224cc7 100644 --- a/third_party/expat/expat.gyp +++ b/third_party/expat/expat.gyp @@ -43,7 +43,7 @@ 'COMPILED_FROM_DSP', ], }], - ['OS=="linux"', { + ['OS=="linux" or OS=="mac"', { 'defines': [ 'HAVE_EXPAT_CONFIG_H', ], |