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

Side by Side Diff: chrome/common/common.scons

Issue 20156: POSIX: basic IPC logging (Closed)
Patch Set: Merge jrg's xcode changes Created 11 years, 10 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
« no previous file with comments | « chrome/chrome.xcodeproj/project.pbxproj ('k') | chrome/common/ipc_channel_proxy.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 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 ) 225 )
226 226
227 # TODO(port): Port these. 227 # TODO(port): Port these.
228 input_files.Remove( 228 input_files.Remove(
229 'chrome_plugin_util.cc', 229 'chrome_plugin_util.cc',
230 'chrome_process_filter.cc', 230 'chrome_process_filter.cc',
231 'drag_drop_types.cc', 231 'drag_drop_types.cc',
232 'gfx/emf.cc', 232 'gfx/emf.cc',
233 'gfx/icon_util.cc', 233 'gfx/icon_util.cc',
234 'gfx/path.cc', 234 'gfx/path.cc',
235 'ipc_logging.cc',
236 'os_exchange_data.cc', 235 'os_exchange_data.cc',
237 'process_watcher.cc', 236 'process_watcher.cc',
238 ) 237 )
239 238
240 if not env.Bit('windows'): 239 if not env.Bit('windows'):
241 # Windows specific files 240 # Windows specific files
242 input_files.Remove( 241 input_files.Remove(
243 'chrome_paths_win.cc', 242 'chrome_paths_win.cc',
244 'classfactory.cc', 243 'classfactory.cc',
245 'gfx/chrome_canvas_win.cc', 244 'gfx/chrome_canvas_win.cc',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 './common.vsprops', 320 './common.vsprops',
322 '$(SolutionDir)../build/release.vsprops', 321 '$(SolutionDir)../build/release.vsprops',
323 ]) 322 ])
324 323
325 p.AddFileConfig('../tools/build/win/precompiled.cc', 324 p.AddFileConfig('../tools/build/win/precompiled.cc',
326 'Debug|Win32', 325 'Debug|Win32',
327 tools=[ 326 tools=[
328 MSVSTool('VCCLCompilerTool', 327 MSVSTool('VCCLCompilerTool',
329 UsePrecompiledHeader='1'), 328 UsePrecompiledHeader='1'),
330 ]) 329 ])
OLDNEW
« no previous file with comments | « chrome/chrome.xcodeproj/project.pbxproj ('k') | chrome/common/ipc_channel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698