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

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

Issue 16477: Mass convert ChromeStaticLibrary -> ChromeLibrary, including pulling the (Closed)
Patch Set: Created 11 years, 12 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/browser/views/SConscript ('k') | chrome/installer/util/util.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 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 ]) 127 ])
128 128
129 if env.Bit('posix'): 129 if env.Bit('posix'):
130 input_files.extend([ 130 input_files.extend([
131 'ipc_channel_posix.cc', 131 'ipc_channel_posix.cc',
132 ]) 132 ])
133 133
134 134
135 if not env.Bit('mac'): 135 if not env.Bit('mac'):
136 # TODO(port): This should be enabled for all platforms. 136 # TODO(port): This should be enabled for all platforms.
137 env.ChromeStaticLibrary('common', input_files) 137 env.ChromeLibrary('common', input_files)
138 138
139 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj', 139 env.ChromeMSVSProject('$CHROME_DIR/common/common.vcproj',
140 dependencies = [ 140 dependencies = [
141 '$LIBXML_DIR/build/libxml_config.vcproj', 141 '$LIBXML_DIR/build/libxml_config.vcproj',
142 '$CHROME_DIR/app/generated_resources.vcproj', 142 '$CHROME_DIR/app/generated_resources.vcproj',
143 ], 143 ],
144 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}') 144 guid='{899F1280-3441-4D1F-BA04-CCD6208D9146}')
OLDNEW
« no previous file with comments | « chrome/browser/views/SConscript ('k') | chrome/installer/util/util.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698