| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 gzip.cc | 254 gzip.cc |
| 255 libcurl_http_fetcher.cc | 255 libcurl_http_fetcher.cc |
| 256 marshal.glibmarshal.c | 256 marshal.glibmarshal.c |
| 257 omaha_hash_calculator.cc | 257 omaha_hash_calculator.cc |
| 258 omaha_request_action.cc | 258 omaha_request_action.cc |
| 259 omaha_request_params.cc | 259 omaha_request_params.cc |
| 260 omaha_response_handler_action.cc | 260 omaha_response_handler_action.cc |
| 261 payload_signer.cc | 261 payload_signer.cc |
| 262 postinstall_runner_action.cc | 262 postinstall_runner_action.cc |
| 263 prefs.cc | 263 prefs.cc |
| 264 set_bootable_flag_action.cc | |
| 265 simple_key_value_store.cc | 264 simple_key_value_store.cc |
| 266 split_file_writer.cc | 265 split_file_writer.cc |
| 267 subprocess.cc | 266 subprocess.cc |
| 268 tarjan.cc | 267 tarjan.cc |
| 269 terminator.cc | 268 terminator.cc |
| 270 topological_sort.cc | 269 topological_sort.cc |
| 271 update_attempter.cc | 270 update_attempter.cc |
| 272 update_check_scheduler.cc | 271 update_check_scheduler.cc |
| 273 update_metadata.pb.cc | 272 update_metadata.pb.cc |
| 274 utils.cc""") | 273 utils.cc""") |
| (...skipping 20 matching lines...) Expand all Loading... |
| 295 graph_utils_unittest.cc | 294 graph_utils_unittest.cc |
| 296 http_fetcher_unittest.cc | 295 http_fetcher_unittest.cc |
| 297 mock_http_fetcher.cc | 296 mock_http_fetcher.cc |
| 298 omaha_hash_calculator_unittest.cc | 297 omaha_hash_calculator_unittest.cc |
| 299 omaha_request_action_unittest.cc | 298 omaha_request_action_unittest.cc |
| 300 omaha_request_params_unittest.cc | 299 omaha_request_params_unittest.cc |
| 301 omaha_response_handler_action_unittest.cc | 300 omaha_response_handler_action_unittest.cc |
| 302 payload_signer_unittest.cc | 301 payload_signer_unittest.cc |
| 303 postinstall_runner_action_unittest.cc | 302 postinstall_runner_action_unittest.cc |
| 304 prefs_unittest.cc | 303 prefs_unittest.cc |
| 305 set_bootable_flag_action_unittest.cc | |
| 306 simple_key_value_store_unittest.cc | 304 simple_key_value_store_unittest.cc |
| 307 split_file_writer_unittest.cc | 305 split_file_writer_unittest.cc |
| 308 subprocess_unittest.cc | 306 subprocess_unittest.cc |
| 309 tarjan_unittest.cc | 307 tarjan_unittest.cc |
| 310 test_utils.cc | 308 test_utils.cc |
| 311 topological_sort_unittest.cc | 309 topological_sort_unittest.cc |
| 312 update_attempter_unittest.cc | 310 update_attempter_unittest.cc |
| 313 update_check_scheduler_unittest.cc | 311 update_check_scheduler_unittest.cc |
| 314 utils_unittest.cc | 312 utils_unittest.cc |
| 315 zip_unittest.cc""") | 313 zip_unittest.cc""") |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 delta_generator_main) | 347 delta_generator_main) |
| 350 | 348 |
| 351 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') | 349 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') |
| 352 | 350 |
| 353 unittest_env = env.Clone() | 351 unittest_env = env.Clone() |
| 354 unittest_env.Append(LIBS=['gmock', 'gtest']) | 352 unittest_env.Append(LIBS=['gmock', 'gtest']) |
| 355 unittest_cmd = unittest_env.Program('update_engine_unittests', | 353 unittest_cmd = unittest_env.Program('update_engine_unittests', |
| 356 unittest_sources + unittest_main) | 354 unittest_sources + unittest_main) |
| 357 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 355 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
| 358 Split('html app.info')) | 356 Split('html app.info')) |
| OLD | NEW |