Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: chrome/common/SConscript

Issue 3149: Porting changes in chrome/{browser,common}, also enabling more unit tests.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 '$ICU38_DIR/public/common', 44 '$ICU38_DIR/public/common',
45 '$ICU38_DIR/public/i18n', 45 '$ICU38_DIR/public/i18n',
46 ], 46 ],
47 ) 47 )
48 48
49 input_files = [] 49 input_files = []
50 50
51 if env['PLATFORM'] in ('posix', 'win32'): 51 if env['PLATFORM'] in ('posix', 'win32'):
52 # TODO(port): Port to Mac. 52 # TODO(port): Port to Mac.
53 input_files.extend([ 53 input_files.extend([
54 'animation.cc',
54 'chrome_constants.cc', 55 'chrome_constants.cc',
55 'chrome_counters.cc', 56 'chrome_counters.cc',
56 'chrome_switches.cc', 57 'chrome_switches.cc',
57 'debug_flags.cc', 58 'debug_flags.cc',
58 'env_vars.cc', 59 'env_vars.cc',
59 'gfx/color_utils.cc', 60 'gfx/color_utils.cc',
61 'ipc_message.cc',
60 'jpeg_codec.cc', 62 'jpeg_codec.cc',
61 'json_value_serializer.cc', 63 'json_value_serializer.cc',
62 'libxml_utils.cc', 64 'libxml_utils.cc',
63 'net/cookie_monster_sqlite.cc', 65 'net/cookie_monster_sqlite.cc',
64 'notification_service.cc', 66 'notification_service.cc',
65 'pref_member.cc', 67 'pref_member.cc',
66 'pref_names.cc', 68 'pref_names.cc',
67 'slide_animation.cc', 69 'slide_animation.cc',
68 'sqlite_compiled_statement.cc', 70 'sqlite_compiled_statement.cc',
71 'sqlite_utils.cc',
69 'task_queue.cc', 72 'task_queue.cc',
70 'throb_animation.cc', 73 'throb_animation.cc',
71 'thumbnail_score.cc', 74 'thumbnail_score.cc',
72 'visitedlink_common.cc', 75 'visitedlink_common.cc',
73 ]) 76 ])
74 77
75 if env['PLATFORM'] == 'win32': 78 if env['PLATFORM'] == 'win32':
76 # TODO(port): Port these. 79 # TODO(port): Port these.
77 input_files.extend([ 80 input_files.extend([
78 'animation.cc',
79 'child_process.cc', 81 'child_process.cc',
80 'chrome_paths.cc', 82 'chrome_paths.cc',
81 'chrome_plugin_lib.cc', 83 'chrome_plugin_lib.cc',
82 'chrome_plugin_util.cc', 84 'chrome_plugin_util.cc',
83 'chrome_process_filter.cc', 85 'chrome_process_filter.cc',
84 'classfactory.cc', 86 'classfactory.cc',
85 'clipboard_service.cc', 87 'clipboard_service.cc',
86 'common_glue.cc', 88 'common_glue.cc',
87 'drag_drop_types.cc', 89 'drag_drop_types.cc',
88 'env_util.cc', 90 'env_util.cc',
89 'gfx/chrome_canvas.cc', 91 'gfx/chrome_canvas.cc',
90 'gfx/chrome_font.cc', 92 'gfx/chrome_font.cc',
91 'gfx/emf.cc', 93 'gfx/emf.cc',
92 'gfx/icon_util.cc', 94 'gfx/icon_util.cc',
93 'gfx/path.cc', 95 'gfx/path.cc',
94 'gfx/url_elider.cc', 96 'gfx/url_elider.cc',
95 'ipc_channel.cc', 97 'ipc_channel.cc',
96 'ipc_channel_proxy.cc', 98 'ipc_channel_proxy.cc',
97 'ipc_logging.cc', 99 'ipc_logging.cc',
98 'ipc_message.cc',
99 'ipc_message_utils.cc', 100 'ipc_message_utils.cc',
100 'ipc_sync_channel.cc', 101 'ipc_sync_channel.cc',
101 'ipc_sync_message.cc', 102 'ipc_sync_message.cc',
102 'jstemplate_builder.cc', 103 'jstemplate_builder.cc',
103 'l10n_util.cc', 104 'l10n_util.cc',
104 'logging_chrome.cc', 105 'logging_chrome.cc',
105 'message_router.cc', 106 'message_router.cc',
106 'net/url_request_intercept_job.cc', 107 'net/url_request_intercept_job.cc',
107 'os_exchange_data.cc', 108 'os_exchange_data.cc',
108 'plugin_messages.cc', 109 'plugin_messages.cc',
109 'pref_service.cc', 110 'pref_service.cc',
110 'process_watcher.cc', 111 'process_watcher.cc',
111 'rand_util.cc', 112 'rand_util.cc',
112 'render_messages.cc', 113 'render_messages.cc',
113 'resource_bundle.cc', 114 'resource_bundle.cc',
114 'resource_dispatcher.cc', 115 'resource_dispatcher.cc',
115 'security_filter_peer.cc', 116 'security_filter_peer.cc',
116 'sqlite_utils.cc',
117 'time_format.cc', 117 'time_format.cc',
118 'win_safe_util.cc', 118 'win_safe_util.cc',
119 'win_util.cc', 119 'win_util.cc',
120 'worker_thread_ticker.cc', 120 'worker_thread_ticker.cc',
121 ]) 121 ])
122 122
123 if env['PLATFORM'] in ('posix', 'win32'): 123 if env['PLATFORM'] in ('posix', 'win32'):
124 # TODO(port): This should be enabled for all platforms. 124 # TODO(port): This should be enabled for all platforms.
125 env.ChromeStaticLibrary('common', input_files) 125 env.ChromeStaticLibrary('common', input_files)
126 126
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 176
177 libs = [ 177 libs = [
178 'common.lib', 178 'common.lib',
179 ] 179 ]
180 180
181 ipc_tests = env_test.ChromeTestProgram('ipc_tests', ipc_tests_files + libs) 181 ipc_tests = env_test.ChromeTestProgram('ipc_tests', ipc_tests_files + libs)
182 182
183 i = env_test.Install('$TARGET_ROOT', ipc_tests) 183 i = env_test.Install('$TARGET_ROOT', ipc_tests)
184 Alias('chrome', i) 184 Alias('chrome', i)
185 185
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698