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

Side by Side Diff: SConstruct

Issue 5104007: AU: Add unit tests for the Terminator class. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git@master
Patch Set: unnecessary header file Created 10 years, 1 month 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 | terminator.h » ('j') | no next file with comments »
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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 omaha_request_action_unittest.cc 301 omaha_request_action_unittest.cc
302 omaha_request_params_unittest.cc 302 omaha_request_params_unittest.cc
303 omaha_response_handler_action_unittest.cc 303 omaha_response_handler_action_unittest.cc
304 payload_signer_unittest.cc 304 payload_signer_unittest.cc
305 postinstall_runner_action_unittest.cc 305 postinstall_runner_action_unittest.cc
306 prefs_unittest.cc 306 prefs_unittest.cc
307 simple_key_value_store_unittest.cc 307 simple_key_value_store_unittest.cc
308 split_file_writer_unittest.cc 308 split_file_writer_unittest.cc
309 subprocess_unittest.cc 309 subprocess_unittest.cc
310 tarjan_unittest.cc 310 tarjan_unittest.cc
311 terminator_unittest.cc
311 test_utils.cc 312 test_utils.cc
312 topological_sort_unittest.cc 313 topological_sort_unittest.cc
313 update_attempter_unittest.cc 314 update_attempter_unittest.cc
314 update_check_scheduler_unittest.cc 315 update_check_scheduler_unittest.cc
315 utils_unittest.cc 316 utils_unittest.cc
316 zip_unittest.cc""") 317 zip_unittest.cc""")
317 unittest_main = ['testrunner.cc'] 318 unittest_main = ['testrunner.cc']
318 319
319 client_main = ['update_engine_client.cc'] 320 client_main = ['update_engine_client.cc']
320 321
(...skipping 29 matching lines...) Expand all
350 delta_generator_main) 351 delta_generator_main)
351 352
352 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') 353 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc')
353 354
354 unittest_env = env.Clone() 355 unittest_env = env.Clone()
355 unittest_env.Append(LIBS=['gmock', 'gtest']) 356 unittest_env.Append(LIBS=['gmock', 'gtest'])
356 unittest_cmd = unittest_env.Program('update_engine_unittests', 357 unittest_cmd = unittest_env.Program('update_engine_unittests',
357 unittest_sources + unittest_main) 358 unittest_sources + unittest_main)
358 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + 359 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') +
359 Split('html app.info')) 360 Split('html app.info'))
OLDNEW
« no previous file with comments | « no previous file | terminator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698