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

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

Issue 20027: Capability: passing fds over IPC (Closed)
Patch Set: ... 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/file_descriptor_posix.h » ('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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'win_safe_util.h', 211 'win_safe_util.h',
212 'win_util.cc', 212 'win_util.cc',
213 'win_util.h', 213 'win_util.h',
214 'worker_thread_ticker.cc', 214 'worker_thread_ticker.cc',
215 'worker_thread_ticker.h', 215 'worker_thread_ticker.h',
216 ]) 216 ])
217 217
218 if not env.Bit('windows'): 218 if not env.Bit('windows'):
219 # TODO(port): This is temporary so we can link. 219 # TODO(port): This is temporary so we can link.
220 input_files.Append( 220 input_files.Append(
221 'temp_scaffolding_stubs.cc' 221 'temp_scaffolding_stubs.cc',
222 'file_descriptor_posix.cc',
222 ) 223 )
223 224
224 # TODO(port): Port these. 225 # TODO(port): Port these.
225 input_files.Remove( 226 input_files.Remove(
226 'chrome_plugin_util.cc', 227 'chrome_plugin_util.cc',
227 'chrome_process_filter.cc', 228 'chrome_process_filter.cc',
228 'drag_drop_types.cc', 229 'drag_drop_types.cc',
229 'gfx/emf.cc', 230 'gfx/emf.cc',
230 'gfx/icon_util.cc', 231 'gfx/icon_util.cc',
231 'gfx/path.cc', 232 'gfx/path.cc',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 './common.vsprops', 319 './common.vsprops',
319 '$(SolutionDir)../build/release.vsprops', 320 '$(SolutionDir)../build/release.vsprops',
320 ]) 321 ])
321 322
322 p.AddFileConfig('../tools/build/win/precompiled.cc', 323 p.AddFileConfig('../tools/build/win/precompiled.cc',
323 'Debug|Win32', 324 'Debug|Win32',
324 tools=[ 325 tools=[
325 MSVSTool('VCCLCompilerTool', 326 MSVSTool('VCCLCompilerTool',
326 UsePrecompiledHeader='1'), 327 UsePrecompiledHeader='1'),
327 ]) 328 ])
OLDNEW
« no previous file with comments | « chrome/chrome.xcodeproj/project.pbxproj ('k') | chrome/common/file_descriptor_posix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698