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

Side by Side Diff: base/base_lib.scons

Issue 7974: Port a few test_shell_tests. Now it runs 45 of them.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 2 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
« no previous file with comments | « no previous file | base/file_version_info_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 __doc__ = """ 5 __doc__ = """
6 Configuration for building base.lib / libbase.a. 6 Configuration for building base.lib / libbase.a.
7 """ 7 """
8 8
9 Import('env') 9 Import('env')
10 10
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 'sys_string_conversions_mac.mm', 170 'sys_string_conversions_mac.mm',
171 'worker_pool_mac.mm', 171 'worker_pool_mac.mm',
172 ]) 172 ])
173 173
174 if env['PLATFORM'] == 'posix': 174 if env['PLATFORM'] == 'posix':
175 input_files.extend([ 175 input_files.extend([
176 'atomicops_internals_x86_gcc.cc', 176 'atomicops_internals_x86_gcc.cc',
177 'base_paths_linux.cc', 177 'base_paths_linux.cc',
178 'clipboard_linux.cc', 178 'clipboard_linux.cc',
179 'file_util_linux.cc', 179 'file_util_linux.cc',
180 'file_version_info_linux.cc',
180 'hmac_nss.cc', 181 'hmac_nss.cc',
181 'message_pump_glib.cc', 182 'message_pump_glib.cc',
182 'nss_init.cc', 183 'nss_init.cc',
183 'process_posix.cc', 184 'process_posix.cc',
184 'process_util_linux.cc', 185 'process_util_linux.cc',
185 'sys_string_conversions_linux.cc', 186 'sys_string_conversions_linux.cc',
186 'worker_pool.cc', 187 'worker_pool.cc',
187 ]) 188 ])
188 189
189 base_lib = env.ChromeStaticLibrary('base', input_files) 190 base_lib = env.ChromeStaticLibrary('base', input_files)
190 env.Alias('base', base_lib) 191 env.Alias('base', base_lib)
OLDNEW
« no previous file with comments | « no previous file | base/file_version_info_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698