OLD | NEW |
1 # Copyright (c) 2009 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 |
11 source: list of sources to compile | 11 source: list of sources to compile |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 buffered_file_writer.cc | 196 buffered_file_writer.cc |
197 bzip.cc | 197 bzip.cc |
198 bzip_extent_writer.cc | 198 bzip_extent_writer.cc |
199 cycle_breaker.cc | 199 cycle_breaker.cc |
200 dbus_service.cc | 200 dbus_service.cc |
201 decompressing_file_writer.cc | 201 decompressing_file_writer.cc |
202 delta_diff_generator.cc | 202 delta_diff_generator.cc |
203 delta_performer.cc | 203 delta_performer.cc |
204 download_action.cc | 204 download_action.cc |
205 extent_mapper.cc | 205 extent_mapper.cc |
| 206 extent_ranges.cc |
206 extent_writer.cc | 207 extent_writer.cc |
207 filesystem_copier_action.cc | 208 filesystem_copier_action.cc |
208 filesystem_iterator.cc | 209 filesystem_iterator.cc |
209 file_writer.cc | 210 file_writer.cc |
210 graph_utils.cc | 211 graph_utils.cc |
211 gzip.cc | 212 gzip.cc |
212 libcurl_http_fetcher.cc | 213 libcurl_http_fetcher.cc |
213 marshal.glibmarshal.c | 214 marshal.glibmarshal.c |
214 omaha_hash_calculator.cc | 215 omaha_hash_calculator.cc |
215 omaha_request_action.cc | 216 omaha_request_action.cc |
(...skipping 18 matching lines...) Expand all Loading... |
234 action_pipe_unittest.cc | 235 action_pipe_unittest.cc |
235 action_processor_unittest.cc | 236 action_processor_unittest.cc |
236 buffered_file_writer_unittest.cc | 237 buffered_file_writer_unittest.cc |
237 bzip_extent_writer_unittest.cc | 238 bzip_extent_writer_unittest.cc |
238 cycle_breaker_unittest.cc | 239 cycle_breaker_unittest.cc |
239 decompressing_file_writer_unittest.cc | 240 decompressing_file_writer_unittest.cc |
240 delta_diff_generator_unittest.cc | 241 delta_diff_generator_unittest.cc |
241 delta_performer_unittest.cc | 242 delta_performer_unittest.cc |
242 download_action_unittest.cc | 243 download_action_unittest.cc |
243 extent_mapper_unittest.cc | 244 extent_mapper_unittest.cc |
| 245 extent_ranges_unittest.cc |
244 extent_writer_unittest.cc | 246 extent_writer_unittest.cc |
245 file_writer_unittest.cc | 247 file_writer_unittest.cc |
246 filesystem_copier_action_unittest.cc | 248 filesystem_copier_action_unittest.cc |
247 filesystem_iterator_unittest.cc | 249 filesystem_iterator_unittest.cc |
248 graph_utils_unittest.cc | 250 graph_utils_unittest.cc |
249 http_fetcher_unittest.cc | 251 http_fetcher_unittest.cc |
250 mock_http_fetcher.cc | 252 mock_http_fetcher.cc |
251 omaha_hash_calculator_unittest.cc | 253 omaha_hash_calculator_unittest.cc |
252 omaha_request_action_unittest.cc | 254 omaha_request_action_unittest.cc |
253 omaha_request_params_unittest.cc | 255 omaha_request_params_unittest.cc |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 delta_generator_main) | 302 delta_generator_main) |
301 | 303 |
302 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') | 304 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') |
303 | 305 |
304 unittest_env = env.Clone() | 306 unittest_env = env.Clone() |
305 unittest_env.Append(LIBS=['gmock', 'gtest']) | 307 unittest_env.Append(LIBS=['gmock', 'gtest']) |
306 unittest_cmd = unittest_env.Program('update_engine_unittests', | 308 unittest_cmd = unittest_env.Program('update_engine_unittests', |
307 unittest_sources + unittest_main) | 309 unittest_sources + unittest_main) |
308 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 310 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
309 Split('html app.info')) | 311 Split('html app.info')) |
OLD | NEW |