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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 file_writer.cc | 207 file_writer.cc |
208 graph_utils.cc | 208 graph_utils.cc |
209 gzip.cc | 209 gzip.cc |
210 libcurl_http_fetcher.cc | 210 libcurl_http_fetcher.cc |
211 marshal.glibmarshal.c | 211 marshal.glibmarshal.c |
212 omaha_hash_calculator.cc | 212 omaha_hash_calculator.cc |
213 omaha_request_action.cc | 213 omaha_request_action.cc |
214 omaha_request_params.cc | 214 omaha_request_params.cc |
215 omaha_response_handler_action.cc | 215 omaha_response_handler_action.cc |
216 postinstall_runner_action.cc | 216 postinstall_runner_action.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 |
225 utils.cc""") | 226 utils.cc""") |
226 main = ['main.cc'] | 227 main = ['main.cc'] |
(...skipping 13 matching lines...) Expand all Loading... |
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 |
249 postinstall_runner_action_unittest.cc | 250 postinstall_runner_action_unittest.cc |
| 251 prefs_unittest.cc |
250 set_bootable_flag_action_unittest.cc | 252 set_bootable_flag_action_unittest.cc |
251 simple_key_value_store_unittest.cc | 253 simple_key_value_store_unittest.cc |
252 split_file_writer_unittest.cc | 254 split_file_writer_unittest.cc |
253 subprocess_unittest.cc | 255 subprocess_unittest.cc |
254 tarjan_unittest.cc | 256 tarjan_unittest.cc |
255 test_utils.cc | 257 test_utils.cc |
256 topological_sort_unittest.cc | 258 topological_sort_unittest.cc |
257 utils_unittest.cc | 259 utils_unittest.cc |
258 zip_unittest.cc""") | 260 zip_unittest.cc""") |
259 unittest_main = ['testrunner.cc'] | 261 unittest_main = ['testrunner.cc'] |
(...skipping 30 matching lines...) Expand all Loading... |
290 delta_generator_main) | 292 delta_generator_main) |
291 | 293 |
292 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') | 294 http_server_cmd = env.Program('test_http_server', 'test_http_server.cc') |
293 | 295 |
294 unittest_env = env.Clone() | 296 unittest_env = env.Clone() |
295 unittest_env.Append(LIBS=['gtest']) | 297 unittest_env.Append(LIBS=['gtest']) |
296 unittest_cmd = unittest_env.Program('update_engine_unittests', | 298 unittest_cmd = unittest_env.Program('update_engine_unittests', |
297 unittest_sources + unittest_main) | 299 unittest_sources + unittest_main) |
298 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + | 300 Clean(unittest_cmd, Glob('*.gcda') + Glob('*.gcno') + Glob('*.gcov') + |
299 Split('html app.info')) | 301 Split('html app.info')) |
OLD | NEW |