| OLD | NEW |
| 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 The Chromium 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('env', 'env_test') | 5 Import('env', 'env_test') |
| 6 | 6 |
| 7 env = env.Clone() | 7 env = env.Clone() |
| 8 | 8 |
| 9 env.Prepend( | 9 env.Prepend( |
| 10 CPPPATH = [ | 10 CPPPATH = [ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 input_files.extend([ | 80 input_files.extend([ |
| 81 'child_process.cc', | 81 'child_process.cc', |
| 82 'chrome_paths.cc', | 82 'chrome_paths.cc', |
| 83 'chrome_plugin_lib.cc', | 83 'chrome_plugin_lib.cc', |
| 84 'chrome_plugin_util.cc', | 84 'chrome_plugin_util.cc', |
| 85 'chrome_process_filter.cc', | 85 'chrome_process_filter.cc', |
| 86 'classfactory.cc', | 86 'classfactory.cc', |
| 87 'clipboard_service.cc', | 87 'clipboard_service.cc', |
| 88 'common_glue.cc', | 88 'common_glue.cc', |
| 89 'drag_drop_types.cc', | 89 'drag_drop_types.cc', |
| 90 'env_util.cc', | |
| 91 'gfx/chrome_canvas.cc', | 90 'gfx/chrome_canvas.cc', |
| 92 'gfx/chrome_font.cc', | 91 'gfx/chrome_font.cc', |
| 93 'gfx/emf.cc', | 92 'gfx/emf.cc', |
| 94 'gfx/icon_util.cc', | 93 'gfx/icon_util.cc', |
| 95 'gfx/path.cc', | 94 'gfx/path.cc', |
| 96 'gfx/url_elider.cc', | 95 'gfx/url_elider.cc', |
| 97 'ipc_channel.cc', | 96 'ipc_channel.cc', |
| 98 'ipc_channel_proxy.cc', | 97 'ipc_channel_proxy.cc', |
| 99 'ipc_logging.cc', | 98 'ipc_logging.cc', |
| 100 'ipc_message_utils.cc', | 99 'ipc_message_utils.cc', |
| 101 'ipc_sync_channel.cc', | 100 'ipc_sync_channel.cc', |
| 102 'ipc_sync_message.cc', | 101 'ipc_sync_message.cc', |
| 103 'jstemplate_builder.cc', | 102 'jstemplate_builder.cc', |
| 104 'l10n_util.cc', | 103 'l10n_util.cc', |
| 105 'logging_chrome.cc', | 104 'logging_chrome.cc', |
| 106 'message_router.cc', | 105 'message_router.cc', |
| 107 'net/url_request_intercept_job.cc', | 106 'net/url_request_intercept_job.cc', |
| 108 'os_exchange_data.cc', | 107 'os_exchange_data.cc', |
| 109 'plugin_messages.cc', | 108 'plugin_messages.cc', |
| 110 'pref_service.cc', | 109 'pref_service.cc', |
| 111 'process_watcher.cc', | 110 'process_watcher.cc', |
| 112 'rand_util.cc', | |
| 113 'render_messages.cc', | 111 'render_messages.cc', |
| 114 'resource_bundle.cc', | 112 'resource_bundle.cc', |
| 115 'resource_dispatcher.cc', | 113 'resource_dispatcher.cc', |
| 116 'security_filter_peer.cc', | 114 'security_filter_peer.cc', |
| 117 'time_format.cc', | 115 'time_format.cc', |
| 118 'win_safe_util.cc', | 116 'win_safe_util.cc', |
| 119 'win_util.cc', | 117 'win_util.cc', |
| 120 'worker_thread_ticker.cc', | 118 'worker_thread_ticker.cc', |
| 121 ]) | 119 ]) |
| 122 | 120 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 174 |
| 177 libs = [ | 175 libs = [ |
| 178 'common.lib', | 176 'common.lib', |
| 179 ] | 177 ] |
| 180 | 178 |
| 181 ipc_tests = env_test.ChromeTestProgram('ipc_tests', ipc_tests_files + libs) | 179 ipc_tests = env_test.ChromeTestProgram('ipc_tests', ipc_tests_files + libs) |
| 182 | 180 |
| 183 i = env_test.Install('$TARGET_ROOT', ipc_tests) | 181 i = env_test.Install('$TARGET_ROOT', ipc_tests) |
| 184 Alias('chrome', i) | 182 Alias('chrome', i) |
| 185 | 183 |
| OLD | NEW |