| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 filesystem_iterator.cc | 205 filesystem_iterator.cc |
| 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_action.cc | 212 omaha_request_action.cc |
| 213 omaha_request_params.cc | 213 omaha_request_params.cc |
| 214 omaha_response_handler_action.cc | 214 omaha_response_handler_action.cc |
| 215 payload_signer.cc |
| 215 postinstall_runner_action.cc | 216 postinstall_runner_action.cc |
| 216 prefs.cc | 217 prefs.cc |
| 217 set_bootable_flag_action.cc | 218 set_bootable_flag_action.cc |
| 218 simple_key_value_store.cc | 219 simple_key_value_store.cc |
| 219 split_file_writer.cc | 220 split_file_writer.cc |
| 220 subprocess.cc | 221 subprocess.cc |
| 221 tarjan.cc | 222 tarjan.cc |
| 222 topological_sort.cc | 223 topological_sort.cc |
| 223 update_attempter.cc | 224 update_attempter.cc |
| 224 update_metadata.pb.cc | 225 update_metadata.pb.cc |
| (...skipping 14 matching lines...) Expand all Loading... |
| 239 file_writer_unittest.cc | 240 file_writer_unittest.cc |
| 240 filesystem_copier_action_unittest.cc | 241 filesystem_copier_action_unittest.cc |
| 241 filesystem_iterator_unittest.cc | 242 filesystem_iterator_unittest.cc |
| 242 graph_utils_unittest.cc | 243 graph_utils_unittest.cc |
| 243 http_fetcher_unittest.cc | 244 http_fetcher_unittest.cc |
| 244 mock_http_fetcher.cc | 245 mock_http_fetcher.cc |
| 245 omaha_hash_calculator_unittest.cc | 246 omaha_hash_calculator_unittest.cc |
| 246 omaha_request_action_unittest.cc | 247 omaha_request_action_unittest.cc |
| 247 omaha_request_params_unittest.cc | 248 omaha_request_params_unittest.cc |
| 248 omaha_response_handler_action_unittest.cc | 249 omaha_response_handler_action_unittest.cc |
| 250 payload_signer_unittest.cc |
| 249 postinstall_runner_action_unittest.cc | 251 postinstall_runner_action_unittest.cc |
| 250 prefs_unittest.cc | 252 prefs_unittest.cc |
| 251 set_bootable_flag_action_unittest.cc | 253 set_bootable_flag_action_unittest.cc |
| 252 simple_key_value_store_unittest.cc | 254 simple_key_value_store_unittest.cc |
| 253 split_file_writer_unittest.cc | 255 split_file_writer_unittest.cc |
| 254 subprocess_unittest.cc | 256 subprocess_unittest.cc |
| 255 tarjan_unittest.cc | 257 tarjan_unittest.cc |
| 256 test_utils.cc | 258 test_utils.cc |
| 257 topological_sort_unittest.cc | 259 topological_sort_unittest.cc |
| 258 utils_unittest.cc | 260 utils_unittest.cc |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 delta_generator_main) | 293 delta_generator_main) |
| 292 | 294 |
| 293 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') | 295 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') |
| 294 | 296 |
| 295 unittest_env = env.Clone() | 297 unittest_env = env.Clone() |
| 296 unittest_env.Append(LIBS=['gmock', 'gtest']) | 298 unittest_env.Append(LIBS=['gmock', 'gtest']) |
| 297 unittest_cmd = unittest_env.Program('update_engine_unittests', | 299 unittest_cmd = unittest_env.Program('update_engine_unittests', |
| 298 unittest_sources + unittest_main) | 300 unittest_sources + unittest_main) |
| 299 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 301 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
| 300 Split('html app.info')) | 302 Split('html app.info')) |
| OLD | NEW |