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

Side by Side Diff: base/base_lib.scons

Issue 7852: Add directory_watcher_win.cc and its unit test to the (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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 if env['PLATFORM'] == 'win32': 105 if env['PLATFORM'] == 'win32':
106 input_files.extend([ 106 input_files.extend([
107 'base_drag_source.cc', 107 'base_drag_source.cc',
108 'base_drop_target.cc', 108 'base_drop_target.cc',
109 'base_paths_win.cc', 109 'base_paths_win.cc',
110 'clipboard_win.cc', 110 'clipboard_win.cc',
111 'condition_variable_win.cc', 111 'condition_variable_win.cc',
112 'cpu.cc', 112 'cpu.cc',
113 'debug_on_start.cc', 113 'debug_on_start.cc',
114 'debug_util_win.cc', 114 'debug_util_win.cc',
115 'directory_watcher_win.cc',
115 'file_util_win.cc', 116 'file_util_win.cc',
116 'hmac_win.cc', 117 'hmac_win.cc',
117 'iat_patch.cc', 118 'iat_patch.cc',
118 'image_util.cc', 119 'image_util.cc',
119 'lock_impl_win.cc', 120 'lock_impl_win.cc',
120 'message_pump_win.cc', 121 'message_pump_win.cc',
121 'pe_image.cc', 122 'pe_image.cc',
122 'platform_thread_win.cc', 123 'platform_thread_win.cc',
123 'process_util_win.cc', 124 'process_util_win.cc',
124 'process_win.cc', 125 'process_win.cc',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'message_pump_glib.cc', 180 'message_pump_glib.cc',
180 'nss_init.cc', 181 'nss_init.cc',
181 'process_posix.cc', 182 'process_posix.cc',
182 'process_util_linux.cc', 183 'process_util_linux.cc',
183 'sys_string_conversions_linux.cc', 184 'sys_string_conversions_linux.cc',
184 'worker_pool.cc', 185 'worker_pool.cc',
185 ]) 186 ])
186 187
187 base_lib = env.ChromeStaticLibrary('base', input_files) 188 base_lib = env.ChromeStaticLibrary('base', input_files)
188 env.Alias('base', base_lib) 189 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