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

Side by Side Diff: base/base_lib.scons

Issue 8038: Simultaneously store multiple formats on the linux clipboard. (Closed) Base URL: svn://chrome-svn/chrome/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/base_unittests.scons » ('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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 'platform_thread_mac.mm', 168 'platform_thread_mac.mm',
169 'scoped_nsautorelease_pool.mm', 169 'scoped_nsautorelease_pool.mm',
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 'file_util_linux.cc', 179 'file_util_linux.cc',
179 'hmac_nss.cc', 180 'hmac_nss.cc',
180 'message_pump_glib.cc', 181 'message_pump_glib.cc',
181 'nss_init.cc', 182 'nss_init.cc',
182 'process_posix.cc', 183 'process_posix.cc',
183 'process_util_linux.cc', 184 'process_util_linux.cc',
184 'sys_string_conversions_linux.cc', 185 'sys_string_conversions_linux.cc',
185 'worker_pool.cc', 186 'worker_pool.cc',
186 ]) 187 ])
187 188
188 base_lib = env.ChromeStaticLibrary('base', input_files) 189 base_lib = env.ChromeStaticLibrary('base', input_files)
189 env.Alias('base', base_lib) 190 env.Alias('base', base_lib)
OLDNEW
« no previous file with comments | « no previous file | base/base_unittests.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698