Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: SConstruct

Issue 5835004: AU: MultiHttpFetcher cleanup/rewrite (Closed) Base URL: http://git.chromium.org/git/update_engine.git@master
Patch Set: fixes for review/merge latest trunk Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | http_fetcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'))
« no previous file with comments | « no previous file | http_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698