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

Side by Side Diff: skia/SConscript

Issue 7807: SCons renaming updates for base, net and googleurl:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « sdch/using_sdch.scons ('k') | skia/using_skia.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.Prepend( 9 env.Prepend(
10 CPPPATH = [ 10 CPPPATH = [
11 'include', 11 'include',
12 'include/corecg', 12 'include/corecg',
13 'corecg', 13 'corecg',
14 'sgl', 14 'sgl',
15 'picture', 15 'picture',
16 '#..', 16 '$ROOT_DIR',
17 ], 17 ],
18 ) 18 )
19 19
20 env.Append( 20 env.Append(
21 CPPDEFINES = [ 21 CPPDEFINES = [
22 'SKIA_DISABLE_SUPPORT_FOR_DECODERS', 22 'SKIA_DISABLE_SUPPORT_FOR_DECODERS',
23 ], 23 ],
24 ) 24 )
25 25
26 if env['PLATFORM'] == 'win32': 26 if env['PLATFORM'] == 'win32':
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 # in the skia directory. 170 # in the skia directory.
171 # TODO(bradnelson): This step creates a skia.pch.ib_tag file to be created. 171 # TODO(bradnelson): This step creates a skia.pch.ib_tag file to be created.
172 # It's a 0-length file so likely harmless. Is this a side effect of having 172 # It's a 0-length file so likely harmless. Is this a side effect of having
173 # IncrediBuild installed on the build machine? 173 # IncrediBuild installed on the build machine?
174 pch, obj = env_p.PCH(['skia.pch', 'precompiled.obj'], 'precompiled.cc') 174 pch, obj = env_p.PCH(['skia.pch', 'precompiled.obj'], 'precompiled.cc')
175 env_p['PCH'] = pch 175 env_p['PCH'] = pch
176 input_files += [obj] 176 input_files += [obj]
177 177
178 env.ChromeStaticLibrary('skia', input_files) 178 env.ChromeStaticLibrary('skia', input_files)
179 179
OLDNEW
« no previous file with comments | « sdch/using_sdch.scons ('k') | skia/using_skia.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698