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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 delta_diff_generator.cc | 242 delta_diff_generator.cc |
243 delta_performer.cc | 243 delta_performer.cc |
244 download_action.cc | 244 download_action.cc |
245 extent_mapper.cc | 245 extent_mapper.cc |
246 extent_ranges.cc | 246 extent_ranges.cc |
247 extent_writer.cc | 247 extent_writer.cc |
248 filesystem_copier_action.cc | 248 filesystem_copier_action.cc |
249 filesystem_iterator.cc | 249 filesystem_iterator.cc |
250 file_writer.cc | 250 file_writer.cc |
251 flimflam_proxy.cc | 251 flimflam_proxy.cc |
| 252 full_update_generator.cc |
252 graph_utils.cc | 253 graph_utils.cc |
253 gzip.cc | 254 gzip.cc |
254 libcurl_http_fetcher.cc | 255 libcurl_http_fetcher.cc |
255 marshal.glibmarshal.c | 256 marshal.glibmarshal.c |
256 omaha_hash_calculator.cc | 257 omaha_hash_calculator.cc |
257 omaha_request_action.cc | 258 omaha_request_action.cc |
258 omaha_request_params.cc | 259 omaha_request_params.cc |
259 omaha_response_handler_action.cc | 260 omaha_response_handler_action.cc |
260 payload_signer.cc | 261 payload_signer.cc |
261 postinstall_runner_action.cc | 262 postinstall_runner_action.cc |
(...skipping 21 matching lines...) Expand all Loading... |
283 delta_diff_generator_unittest.cc | 284 delta_diff_generator_unittest.cc |
284 delta_performer_unittest.cc | 285 delta_performer_unittest.cc |
285 download_action_unittest.cc | 286 download_action_unittest.cc |
286 extent_mapper_unittest.cc | 287 extent_mapper_unittest.cc |
287 extent_ranges_unittest.cc | 288 extent_ranges_unittest.cc |
288 extent_writer_unittest.cc | 289 extent_writer_unittest.cc |
289 file_writer_unittest.cc | 290 file_writer_unittest.cc |
290 filesystem_copier_action_unittest.cc | 291 filesystem_copier_action_unittest.cc |
291 filesystem_iterator_unittest.cc | 292 filesystem_iterator_unittest.cc |
292 flimflam_proxy_unittest.cc | 293 flimflam_proxy_unittest.cc |
| 294 full_update_generator_unittest.cc |
293 graph_utils_unittest.cc | 295 graph_utils_unittest.cc |
294 http_fetcher_unittest.cc | 296 http_fetcher_unittest.cc |
295 mock_http_fetcher.cc | 297 mock_http_fetcher.cc |
296 omaha_hash_calculator_unittest.cc | 298 omaha_hash_calculator_unittest.cc |
297 omaha_request_action_unittest.cc | 299 omaha_request_action_unittest.cc |
298 omaha_request_params_unittest.cc | 300 omaha_request_params_unittest.cc |
299 omaha_response_handler_action_unittest.cc | 301 omaha_response_handler_action_unittest.cc |
300 payload_signer_unittest.cc | 302 payload_signer_unittest.cc |
301 postinstall_runner_action_unittest.cc | 303 postinstall_runner_action_unittest.cc |
302 prefs_unittest.cc | 304 prefs_unittest.cc |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 delta_generator_main) | 349 delta_generator_main) |
348 | 350 |
349 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') | 351 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') |
350 | 352 |
351 unittest_env = env.Clone() | 353 unittest_env = env.Clone() |
352 unittest_env.Append(LIBS=['gmock', 'gtest']) | 354 unittest_env.Append(LIBS=['gmock', 'gtest']) |
353 unittest_cmd = unittest_env.Program('update_engine_unittests', | 355 unittest_cmd = unittest_env.Program('update_engine_unittests', |
354 unittest_sources + unittest_main) | 356 unittest_sources + unittest_main) |
355 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 357 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
356 Split('html app.info')) | 358 Split('html app.info')) |
OLD | NEW |