| OLD | NEW |
| 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) |
| OLD | NEW |