diff options
author | rsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-02 23:31:12 +0000 |
---|---|---|
committer | rsimha@chromium.org <rsimha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-02 23:31:12 +0000 |
commit | c6e4bab5934b87488565ac54cb4a91da9a069bcd (patch) | |
tree | a9c0bc25175c77075ba6fe59be5ecdafb125c208 /chrome | |
parent | d9bc603a6d1df252bdecff3ff4a5fde575459e1e (diff) | |
download | chromium_src-c6e4bab5934b87488565ac54cb4a91da9a069bcd.zip chromium_src-c6e4bab5934b87488565ac54cb4a91da9a069bcd.tar.gz chromium_src-c6e4bab5934b87488565ac54cb4a91da9a069bcd.tar.bz2 |
Fix mac build for sync integration tests.
The sync integration tests are missing some dependencies on mac, as a
result of which they crash when they are run. Adding this build flag
seems to fix the problem elsewhere in chrome_tests.gypi.
BUG=50789
TEST=sync_integration_tests
Review URL: http://codereview.chromium.org/3057030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54632 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/chrome_tests.gypi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi index 58ec64e..a9260f4 100644 --- a/chrome/chrome_tests.gypi +++ b/chrome/chrome_tests.gypi @@ -2202,6 +2202,9 @@ 'dependencies+++': [ '../third_party/WebKit/WebCore/WebCore.gyp/WebCore.gyp:webcore', ], + # The sync_integration_tests do not run on mac without this flag. + # Search for comments about "xcode_settings" elsewhere in this file. + 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, }], ['OS=="win"', { 'sources': [ |