| Index: SConstruct
|
| diff --git a/SConstruct b/SConstruct
|
| index 6b0646a36628f6a98c4347ed39587932cd38a858..615d18c5226876995a5a929243f1060dec24648d 100644
|
| --- a/SConstruct
|
| +++ b/SConstruct
|
| @@ -230,7 +230,7 @@ env.DbusBindings('update_engine.dbusclient.h', 'update_engine.xml')
|
| env.GlibMarshal('marshal.glibmarshal.c', 'marshal.list')
|
|
|
| if ARGUMENTS.get('debug', 0):
|
| - env['CCFLAGS'] += ' -fprofile-arcs -ftest-coverage'
|
| + env['CCFLAGS'] += ['-fprofile-arcs', '-ftest-coverage']
|
| env['LIBS'] += ['bz2', 'gcov']
|
|
|
| sources = Split("""action_processor.cc
|
| @@ -258,6 +258,7 @@ sources = Split("""action_processor.cc
|
| libcurl_http_fetcher.cc
|
| marshal.glibmarshal.c
|
| metadata.cc
|
| + multi_range_http_fetcher.cc
|
| omaha_hash_calculator.cc
|
| omaha_request_action.cc
|
| omaha_request_params.cc
|
| @@ -361,4 +362,4 @@ unittest_env.Append(LIBS=['gmock', 'gtest'])
|
| unittest_cmd = unittest_env.Program('update_engine_unittests',
|
| unittest_sources + unittest_main)
|
| Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') +
|
| - Split('html app.info'))
|
| + Split('html app.info'))
|
|
|