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

Side by Side Diff: chrome/views/SConscript

Issue 28206: Fix Linux shared build breakages due to undefined symbols. (Closed)
Patch Set: rearrange scons file list 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/browser/browser.scons ('k') | no next file » | 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 if env.Bit('windows'): 9 if env.Bit('windows'):
10 env.Prepend( 10 env.Prepend(
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 input_files += [ 178 input_files += [
179 "root_view_win.cc", 179 "root_view_win.cc",
180 "view_win.cc" 180 "view_win.cc"
181 ] 181 ]
182 182
183 if env.Bit('linux'): 183 if env.Bit('linux'):
184 input_files += [ 184 input_files += [
185 "root_view_gtk.cc", 185 "root_view_gtk.cc",
186 "view_gtk.cc" 186 "view_gtk.cc"
187 ] 187 ]
188 # TODO(port?): Incomplete and undecided Views stuff. These compile but aren't
189 # currently needed, and they break the shared build due to missing symbols
190 # (from files that aren't yet ported).
191 input_files.Remove(
192 'background.cc',
193 'border.cc',
194 'external_focus_tracker.cc',
195 'grid_layout.cc',
196 'image_view.cc',
197 'label.cc',
198 'layout_manager.cc',
199 'painter.cc',
200 'repeat_controller.cc',
201 'root_view.cc',
202 'scroll_bar.cc',
203 'scroll_view.cc',
204 'throbber.cc',
205 'view.cc',
206 'view_storage.cc',
207 )
188 208
189 # TODO(port): Port to Linux. 209 # TODO(port): Port to Linux.
190 input_files.Remove( 210 input_files.Remove(
191 'accelerator.cc', 211 'accelerator.cc',
192 'accelerator_handler.cc', 212 'accelerator_handler.cc',
193 'accessibility/accessible_wrapper.cc', 213 'accessibility/accessible_wrapper.cc',
194 'accessibility/view_accessibility.cc', 214 'accessibility/view_accessibility.cc',
195 'aero_tooltip_manager.cc', 215 'aero_tooltip_manager.cc',
196 'base_button.cc', 216 'base_button.cc',
197 'bitmap_scroll_bar.cc', 217 'bitmap_scroll_bar.cc',
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 '$(SolutionDir)../build/release.vsprops', 364 '$(SolutionDir)../build/release.vsprops',
345 '../../third_party/icu38/build/using_icu.vsprops', 365 '../../third_party/icu38/build/using_icu.vsprops',
346 ]) 366 ])
347 367
348 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', 368 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc',
349 'Debug|Win32', 369 'Debug|Win32',
350 tools=[ 370 tools=[
351 MSVSTool('VCCLCompilerTool', 371 MSVSTool('VCCLCompilerTool',
352 UsePrecompiledHeader='1'), 372 UsePrecompiledHeader='1'),
353 ]) 373 ])
OLDNEW
« no previous file with comments | « chrome/browser/browser.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698