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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 decompressing_file_writer.cc | 241 decompressing_file_writer.cc |
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 graph_utils.cc | 252 graph_utils.cc |
252 gzip.cc | 253 gzip.cc |
253 libcurl_http_fetcher.cc | 254 libcurl_http_fetcher.cc |
254 marshal.glibmarshal.c | 255 marshal.glibmarshal.c |
255 omaha_hash_calculator.cc | 256 omaha_hash_calculator.cc |
256 omaha_request_action.cc | 257 omaha_request_action.cc |
257 omaha_request_params.cc | 258 omaha_request_params.cc |
258 omaha_response_handler_action.cc | 259 omaha_response_handler_action.cc |
259 payload_signer.cc | 260 payload_signer.cc |
260 postinstall_runner_action.cc | 261 postinstall_runner_action.cc |
(...skipping 20 matching lines...) Expand all Loading... |
281 decompressing_file_writer_unittest.cc | 282 decompressing_file_writer_unittest.cc |
282 delta_diff_generator_unittest.cc | 283 delta_diff_generator_unittest.cc |
283 delta_performer_unittest.cc | 284 delta_performer_unittest.cc |
284 download_action_unittest.cc | 285 download_action_unittest.cc |
285 extent_mapper_unittest.cc | 286 extent_mapper_unittest.cc |
286 extent_ranges_unittest.cc | 287 extent_ranges_unittest.cc |
287 extent_writer_unittest.cc | 288 extent_writer_unittest.cc |
288 file_writer_unittest.cc | 289 file_writer_unittest.cc |
289 filesystem_copier_action_unittest.cc | 290 filesystem_copier_action_unittest.cc |
290 filesystem_iterator_unittest.cc | 291 filesystem_iterator_unittest.cc |
| 292 flimflam_proxy_unittest.cc |
291 graph_utils_unittest.cc | 293 graph_utils_unittest.cc |
292 http_fetcher_unittest.cc | 294 http_fetcher_unittest.cc |
293 mock_http_fetcher.cc | 295 mock_http_fetcher.cc |
294 omaha_hash_calculator_unittest.cc | 296 omaha_hash_calculator_unittest.cc |
295 omaha_request_action_unittest.cc | 297 omaha_request_action_unittest.cc |
296 omaha_request_params_unittest.cc | 298 omaha_request_params_unittest.cc |
297 omaha_response_handler_action_unittest.cc | 299 omaha_response_handler_action_unittest.cc |
298 payload_signer_unittest.cc | 300 payload_signer_unittest.cc |
299 postinstall_runner_action_unittest.cc | 301 postinstall_runner_action_unittest.cc |
300 prefs_unittest.cc | 302 prefs_unittest.cc |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 delta_generator_main) | 347 delta_generator_main) |
346 | 348 |
347 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') |
348 | 350 |
349 unittest_env = env.Clone() | 351 unittest_env = env.Clone() |
350 unittest_env.Append(LIBS=['gmock', 'gtest']) | 352 unittest_env.Append(LIBS=['gmock', 'gtest']) |
351 unittest_cmd = unittest_env.Program('update_engine_unittests', | 353 unittest_cmd = unittest_env.Program('update_engine_unittests', |
352 unittest_sources + unittest_main) | 354 unittest_sources + unittest_main) |
353 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 355 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
354 Split('html app.info')) | 356 Split('html app.info')) |
OLD | NEW |