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

Side by Side Diff: ipc/build.scons

Issue 354011: This change kills the SCons build, since we have switched completely... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 1 month 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 | « installer/win/build.scons ('k') | main.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 __doc__ = """
6 Master configuration for building ipc component.
7 """
8
9 Import('env')
10
11 inputs = [
12 'ipc_channel_proxy',
13 'ipc_logging',
14 'ipc_message',
15 'ipc_message_utils',
16 'ipc_switches',
17 'ipc_sync_channel',
18 'ipc_sync_message',
19 ]
20
21 if env.Bit('windows'):
22 inputs += [
23 'ipc_channel_win',
24 ]
25
26 if env.Bit('mac') or env.Bit('linux'):
27 inputs += [
28 'file_descriptor_set_posix',
29 'ipc_channel_posix',
30 ]
31
32 input_files = env.MakeObjects(inputs, '$CHROME_SRC_DIR/ipc', 'cc')
33 env.ComponentLibrary('o3d_ipc', input_files)
OLDNEW
« no previous file with comments | « installer/win/build.scons ('k') | main.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698