Add extra unit test bundles (all platforms).

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

git-svn-id: http://src.chromium.org/svn/trunk/src/build@29845 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
jrg@chromium.org 2009-10-23 00:12:01 +00:00
Родитель e7fa5e93a9
Коммит a696272015
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -311,10 +311,10 @@
'GCC_INSTRUMENT_PROGRAM_FLOW_ARCS': 'YES', # -fprofile-arcs
'GCC_GENERATE_TEST_COVERAGE_FILES': 'YES', # -ftest-coverage
},
# Add -lgcov for executables, not for static_libraries.
# This is a delayed conditional.
# Add -lgcov for executables and shared_libraries, not for
# static_libraries. This is a delayed conditional.
'target_conditions': [
['_type=="executable"', {
['_type=="executable" or _type=="shared_library"', {
'xcode_settings': { 'OTHER_LDFLAGS': [ '-lgcov' ] },
}],
],