| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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')) |
| OLD | NEW |