| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2009 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 file_writer.cc | 206 file_writer.cc |
| 207 graph_utils.cc | 207 graph_utils.cc |
| 208 gzip.cc | 208 gzip.cc |
| 209 libcurl_http_fetcher.cc | 209 libcurl_http_fetcher.cc |
| 210 marshal.glibmarshal.c | 210 marshal.glibmarshal.c |
| 211 omaha_hash_calculator.cc | 211 omaha_hash_calculator.cc |
| 212 omaha_request_prep_action.cc | 212 omaha_request_prep_action.cc |
| 213 omaha_response_handler_action.cc | 213 omaha_response_handler_action.cc |
| 214 postinstall_runner_action.cc | 214 postinstall_runner_action.cc |
| 215 set_bootable_flag_action.cc | 215 set_bootable_flag_action.cc |
| 216 simple_key_value_store.cc |
| 216 split_file_writer.cc | 217 split_file_writer.cc |
| 217 subprocess.cc | 218 subprocess.cc |
| 218 tarjan.cc | 219 tarjan.cc |
| 219 topological_sort.cc | 220 topological_sort.cc |
| 220 update_attempter.cc | 221 update_attempter.cc |
| 221 update_check_action.cc | 222 update_check_action.cc |
| 222 update_metadata.pb.cc | 223 update_metadata.pb.cc |
| 223 utils.cc""") | 224 utils.cc""") |
| 224 main = ['main.cc'] | 225 main = ['main.cc'] |
| 225 | 226 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 238 filesystem_copier_action_unittest.cc | 239 filesystem_copier_action_unittest.cc |
| 239 filesystem_iterator_unittest.cc | 240 filesystem_iterator_unittest.cc |
| 240 graph_utils_unittest.cc | 241 graph_utils_unittest.cc |
| 241 http_fetcher_unittest.cc | 242 http_fetcher_unittest.cc |
| 242 mock_http_fetcher.cc | 243 mock_http_fetcher.cc |
| 243 omaha_hash_calculator_unittest.cc | 244 omaha_hash_calculator_unittest.cc |
| 244 omaha_request_prep_action_unittest.cc | 245 omaha_request_prep_action_unittest.cc |
| 245 omaha_response_handler_action_unittest.cc | 246 omaha_response_handler_action_unittest.cc |
| 246 postinstall_runner_action_unittest.cc | 247 postinstall_runner_action_unittest.cc |
| 247 set_bootable_flag_action_unittest.cc | 248 set_bootable_flag_action_unittest.cc |
| 249 simple_key_value_store_unittest.cc |
| 248 split_file_writer_unittest.cc | 250 split_file_writer_unittest.cc |
| 249 subprocess_unittest.cc | 251 subprocess_unittest.cc |
| 250 tarjan_unittest.cc | 252 tarjan_unittest.cc |
| 251 test_utils.cc | 253 test_utils.cc |
| 252 topological_sort_unittest.cc | 254 topological_sort_unittest.cc |
| 253 update_check_action_unittest.cc | 255 update_check_action_unittest.cc |
| 254 utils_unittest.cc | 256 utils_unittest.cc |
| 255 zip_unittest.cc""") | 257 zip_unittest.cc""") |
| 256 unittest_main = ['testrunner.cc'] | 258 unittest_main = ['testrunner.cc'] |
| 257 | 259 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 271 delta_generator_main) | 273 delta_generator_main) |
| 272 | 274 |
| 273 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') | 275 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') |
| 274 | 276 |
| 275 unittest_env = env.Clone() | 277 unittest_env = env.Clone() |
| 276 unittest_env.Append(LIBS=['gtest']) | 278 unittest_env.Append(LIBS=['gtest']) |
| 277 unittest_cmd = unittest_env.Program('update_engine_unittests', | 279 unittest_cmd = unittest_env.Program('update_engine_unittests', |
| 278 unittest_sources + unittest_main) | 280 unittest_sources + unittest_main) |
| 279 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 281 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
| 280 Split('html app.info')) | 282 Split('html app.info')) |
| OLD | NEW |