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

Unified Diff: src/platform/update_engine/SConstruct

Issue 492008: AU: Try delta updates first, then full updates (Closed)
Patch Set: use mkstemp Created 11 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 | src/platform/update_engine/action.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/update_engine/SConstruct
diff --git a/src/platform/update_engine/SConstruct b/src/platform/update_engine/SConstruct
index 64406e49290e4c9895d7023c124cdfae01352129..0d124d96b6336187b950cfe591dfe45e45da73a0 100644
--- a/src/platform/update_engine/SConstruct
+++ b/src/platform/update_engine/SConstruct
@@ -123,16 +123,24 @@ unittest_sources = Split("""action_unittest.cc
unittest_main = ['testrunner.cc']
delta_generator_sources = Split("""delta_diff_generator.cc""")
+delta_generator_main = ['generate_delta_main.cc']
+
+test_installer_main = ['test_installer_main.cc']
env.Program('update_engine', sources + main)
unittest_cmd = env.Program('update_engine_unittests',
sources + delta_generator_sources +
unittest_sources + unittest_main)
+test_installer_cmd = env.Program('test_installer',
+ sources + delta_generator_sources +
+ unittest_sources + test_installer_main)
+
Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') +
Split('html app.info'))
delta_generator_cmd = env.Program('delta_generator',
- sources + delta_generator_sources + main)
+ sources + delta_generator_sources +
+ delta_generator_main)
http_server_cmd = env.Program('test_http_server', 'test_http_server.cc')
« no previous file with comments | « no previous file | src/platform/update_engine/action.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698