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

Side by Side Diff: src/platform/theme/SConstruct

Issue 501086: Adds build infrastracture for Gtk theme. (Closed)
Patch Set: Remvoes unneeded import Created 11 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
« no previous file with comments | « src/package_repo/package-list-prod.txt ('k') | src/platform/theme/debian/changelog » ('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) 2009 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium OS 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 os
6 import sys
7
8 SOURCES=['theme_draw.cc', 'theme_main.cc'] 5 SOURCES=['theme_draw.cc', 'theme_main.cc']
9 6
10 env = Environment( 7 env = Environment(
11 CPPPATH=[ '..' ], 8 CPPPATH=[ '..' ],
12 CCFLAGS=['-m32', '-fno-exceptions', '-Wall'], 9 CCFLAGS=['-m32', '-fno-exceptions', '-Wall'],
13 LINKFLAGS=['-m32' ], 10 LINKFLAGS=['-m32' ],
14 ) 11 )
15 12
16 env.ParseConfig('pkg-config --cflags gtk+-2.0 glib-2.0') 13 env.ParseConfig('pkg-config --cflags gtk+-2.0 glib-2.0')
17 14
18 env.SharedLibrary('theme', SOURCES) 15 env.SharedLibrary('theme', SOURCES)
OLDNEW
« no previous file with comments | « src/package_repo/package-list-prod.txt ('k') | src/platform/theme/debian/changelog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698