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') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.SConscript([ | 9 env.SConscript([ |
10 '$BREAKPAD_DIR/using_breakpad.scons', | 10 '$BREAKPAD_DIR/using_breakpad.scons', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'ipc_message.cc', | 55 'ipc_message.cc', |
56 'jpeg_codec.cc', | 56 'jpeg_codec.cc', |
57 'json_value_serializer.cc', | 57 'json_value_serializer.cc', |
58 'libxml_utils.cc', | 58 'libxml_utils.cc', |
59 'logging_chrome.cc', | 59 'logging_chrome.cc', |
60 'net/cookie_monster_sqlite.cc', | 60 'net/cookie_monster_sqlite.cc', |
61 'notification_registrar.cc', | 61 'notification_registrar.cc', |
62 'notification_service.cc', | 62 'notification_service.cc', |
63 'pref_member.cc', | 63 'pref_member.cc', |
64 'pref_names.cc', | 64 'pref_names.cc', |
| 65 'pref_service.cc', |
65 'slide_animation.cc', | 66 'slide_animation.cc', |
66 'sqlite_compiled_statement.cc', | 67 'sqlite_compiled_statement.cc', |
67 'sqlite_utils.cc', | 68 'sqlite_utils.cc', |
68 'task_queue.cc', | 69 'task_queue.cc', |
69 'throb_animation.cc', | 70 'throb_animation.cc', |
70 'thumbnail_score.cc', | 71 'thumbnail_score.cc', |
| 72 'time_format.cc', |
71 'visitedlink_common.cc', | 73 'visitedlink_common.cc', |
72 ]) | 74 ]) |
73 | 75 |
74 if env['PLATFORM'] == 'win32': | 76 if env['PLATFORM'] == 'win32': |
75 # TODO(port): Port these. | 77 # TODO(port): Port these. |
76 input_files.extend([ | 78 input_files.extend([ |
77 'child_process.cc', | 79 'child_process.cc', |
78 'chrome_plugin_lib.cc', | 80 'chrome_plugin_lib.cc', |
79 'chrome_plugin_util.cc', | 81 'chrome_plugin_util.cc', |
80 'chrome_process_filter.cc', | 82 'chrome_process_filter.cc', |
(...skipping 11 matching lines...) Expand all Loading... |
92 'ipc_logging.cc', | 94 'ipc_logging.cc', |
93 'ipc_message_utils.cc', | 95 'ipc_message_utils.cc', |
94 'ipc_sync_channel.cc', | 96 'ipc_sync_channel.cc', |
95 'ipc_sync_message.cc', | 97 'ipc_sync_message.cc', |
96 'jstemplate_builder.cc', | 98 'jstemplate_builder.cc', |
97 'l10n_util.cc', | 99 'l10n_util.cc', |
98 'message_router.cc', | 100 'message_router.cc', |
99 'net/url_request_intercept_job.cc', | 101 'net/url_request_intercept_job.cc', |
100 'os_exchange_data.cc', | 102 'os_exchange_data.cc', |
101 'plugin_messages.cc', | 103 'plugin_messages.cc', |
102 'pref_service.cc', | |
103 'process_watcher.cc', | 104 'process_watcher.cc', |
104 'render_messages.cc', | 105 'render_messages.cc', |
105 'resource_bundle.cc', | 106 'resource_bundle.cc', |
106 'resource_dispatcher.cc', | 107 'resource_dispatcher.cc', |
107 'security_filter_peer.cc', | 108 'security_filter_peer.cc', |
108 'time_format.cc', | |
109 'win_safe_util.cc', | 109 'win_safe_util.cc', |
110 'win_util.cc', | 110 'win_util.cc', |
111 'worker_thread_ticker.cc', | 111 'worker_thread_ticker.cc', |
112 ]) | 112 ]) |
113 | 113 |
114 if env['PLATFORM'] in ('posix', 'win32'): | 114 if env['PLATFORM'] in ('posix', 'win32'): |
115 # TODO(port): This should be enabled for all platforms. | 115 # TODO(port): This should be enabled for all platforms. |
116 env.ChromeStaticLibrary('common', input_files) | 116 env.ChromeStaticLibrary('common', input_files) |
OLD | NEW |