diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 19:13:06 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 19:13:06 +0000 |
commit | 4b0f9635f09dd8db54d6e4e699c7bc20c4aaebee (patch) | |
tree | a695250495947ef597c3bae0e33a9aa26f89cf7b /build/temp_gyp | |
parent | fb5e7d01b21d5fdc1aacc6d96240a1ae22b3374d (diff) | |
download | chromium_src-4b0f9635f09dd8db54d6e4e699c7bc20c4aaebee.zip chromium_src-4b0f9635f09dd8db54d6e4e699c7bc20c4aaebee.tar.gz chromium_src-4b0f9635f09dd8db54d6e4e699c7bc20c4aaebee.tar.bz2 |
gtest shouldn't link in gtest_main.cc, as that provides its own main().
Split gtest into two libraries, where the latter provides main().
This is consistent with the way gtest works within Google and with its
automake files.
Fix binaries that require gtest's main() to depend on gtest.gyp:main.
Review URL: http://codereview.chromium.org/99132
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15440 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/temp_gyp')
-rw-r--r-- | build/temp_gyp/googleurl.gyp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/temp_gyp/googleurl.gyp b/build/temp_gyp/googleurl.gyp index b518e4c..db4043a 100644 --- a/build/temp_gyp/googleurl.gyp +++ b/build/temp_gyp/googleurl.gyp @@ -62,6 +62,7 @@ 'dependencies': [ 'googleurl', '../../testing/gtest.gyp:gtest', + '../../testing/gtest.gyp:gtestmain', '../../third_party/icu38/icu38.gyp:icuuc', ], 'sources': [ |