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

Side by Side Diff: chrome/browser/views/SConscript

Issue 15051: Convert from using env['PLATFORM'] directly to using the more flexible... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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 | « chrome/browser/debugger/debugger.scons ('k') | chrome/chrome.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 9
10 env.Prepend( 10 env.Prepend(
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 'tabs/tab_renderer.cc', 125 'tabs/tab_renderer.cc',
126 'tabs/tab_strip.cc', 126 'tabs/tab_strip.cc',
127 'tab_icon_view.cc', 127 'tab_icon_view.cc',
128 'tab_contents_container_view.cc', 128 'tab_contents_container_view.cc',
129 'theme_helpers.cc', 129 'theme_helpers.cc',
130 'toolbar_star_toggle.cc', 130 'toolbar_star_toggle.cc',
131 'toolbar_view.cc', 131 'toolbar_view.cc',
132 'user_data_dir_dialog.cc', 132 'user_data_dir_dialog.cc',
133 ] 133 ]
134 134
135 if env['PLATFORM'] == 'win32': 135 if env.Bit('windows'):
136 input_files.extend([ 136 input_files.extend([
137 'find_bar_win.cc', 137 'find_bar_win.cc',
138 ]) 138 ])
139 139
140 env.ChromeStaticLibrary('browser_views', input_files) 140 env.ChromeStaticLibrary('browser_views', input_files)
OLDNEW
« no previous file with comments | « chrome/browser/debugger/debugger.scons ('k') | chrome/chrome.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698