| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 extent_mapper.cc | 246 extent_mapper.cc |
| 247 extent_ranges.cc | 247 extent_ranges.cc |
| 248 extent_writer.cc | 248 extent_writer.cc |
| 249 filesystem_copier_action.cc | 249 filesystem_copier_action.cc |
| 250 filesystem_iterator.cc | 250 filesystem_iterator.cc |
| 251 file_writer.cc | 251 file_writer.cc |
| 252 flimflam_proxy.cc | 252 flimflam_proxy.cc |
| 253 full_update_generator.cc | 253 full_update_generator.cc |
| 254 graph_utils.cc | 254 graph_utils.cc |
| 255 gzip.cc | 255 gzip.cc |
| 256 http_fetcher.cc |
| 256 libcurl_http_fetcher.cc | 257 libcurl_http_fetcher.cc |
| 257 marshal.glibmarshal.c | 258 marshal.glibmarshal.c |
| 258 omaha_hash_calculator.cc | 259 omaha_hash_calculator.cc |
| 259 omaha_request_action.cc | 260 omaha_request_action.cc |
| 260 omaha_request_params.cc | 261 omaha_request_params.cc |
| 261 omaha_response_handler_action.cc | 262 omaha_response_handler_action.cc |
| 262 payload_signer.cc | 263 payload_signer.cc |
| 263 postinstall_runner_action.cc | 264 postinstall_runner_action.cc |
| 264 prefs.cc | 265 prefs.cc |
| 265 proxy_resolver.cc | 266 proxy_resolver.cc |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 delta_generator_main) | 351 delta_generator_main) |
| 351 | 352 |
| 352 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') | 353 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') |
| 353 | 354 |
| 354 unittest_env = env.Clone() | 355 unittest_env = env.Clone() |
| 355 unittest_env.Append(LIBS=['gmock', 'gtest']) | 356 unittest_env.Append(LIBS=['gmock', 'gtest']) |
| 356 unittest_cmd = unittest_env.Program('update_engine_unittests', | 357 unittest_cmd = unittest_env.Program('update_engine_unittests', |
| 357 unittest_sources + unittest_main) | 358 unittest_sources + unittest_main) |
| 358 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 359 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
| 359 Split('html app.info')) | 360 Split('html app.info')) |
| OLD | NEW |