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

Side by Side Diff: SConstruct

Issue 3608015: AU: Catch terminate signals and block exit if necessary. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git
Patch Set: typo Created 10 years, 2 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | delta_performer.cc » ('j') | terminator.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os 5 import os
6 6
7 # Protobuffer compilation 7 # Protobuffer compilation
8 def ProtocolBufferEmitter(target, source, env): 8 def ProtocolBufferEmitter(target, source, env):
9 """ Inputs: 9 """ Inputs:
10 target: list of targets to compile to 10 target: list of targets to compile to
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 omaha_request_params.cc 257 omaha_request_params.cc
258 omaha_response_handler_action.cc 258 omaha_response_handler_action.cc
259 payload_signer.cc 259 payload_signer.cc
260 postinstall_runner_action.cc 260 postinstall_runner_action.cc
261 prefs.cc 261 prefs.cc
262 set_bootable_flag_action.cc 262 set_bootable_flag_action.cc
263 simple_key_value_store.cc 263 simple_key_value_store.cc
264 split_file_writer.cc 264 split_file_writer.cc
265 subprocess.cc 265 subprocess.cc
266 tarjan.cc 266 tarjan.cc
267 terminator.cc
267 topological_sort.cc 268 topological_sort.cc
268 update_attempter.cc 269 update_attempter.cc
269 update_check_scheduler.cc 270 update_check_scheduler.cc
270 update_metadata.pb.cc 271 update_metadata.pb.cc
271 utils.cc""") 272 utils.cc""")
272 main = ['main.cc'] 273 main = ['main.cc']
273 274
274 unittest_sources = Split("""action_unittest.cc 275 unittest_sources = Split("""action_unittest.cc
275 action_pipe_unittest.cc 276 action_pipe_unittest.cc
276 action_processor_unittest.cc 277 action_processor_unittest.cc
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 delta_generator_main) 345 delta_generator_main)
345 346
346 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') 347 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc')
347 348
348 unittest_env = env.Clone() 349 unittest_env = env.Clone()
349 unittest_env.Append(LIBS=['gmock', 'gtest']) 350 unittest_env.Append(LIBS=['gmock', 'gtest'])
350 unittest_cmd = unittest_env.Program('update_engine_unittests', 351 unittest_cmd = unittest_env.Program('update_engine_unittests',
351 unittest_sources + unittest_main) 352 unittest_sources + unittest_main)
352 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + 353 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') +
353 Split('html app.info')) 354 Split('html app.info'))
OLDNEW
« no previous file with comments | « no previous file | delta_performer.cc » ('j') | terminator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698