OLD | NEW |
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 __doc__ = """ | 5 __doc__ = """ |
6 Configuration for building base_gfx.lib / libbase_gfx.a. | 6 Configuration for building base_gfx.lib / libbase_gfx.a. |
7 """ | 7 """ |
8 | 8 |
9 Import('env') | 9 Import('env') |
10 | 10 |
11 env = env.Clone() | 11 env = env.Clone() |
12 | 12 |
13 env.ApplySConscript([ | 13 env.ApplySConscript([ |
14 '$ICU38_DIR/using_icu38.scons', | 14 '$ICU38_DIR/using_icu38.scons', |
15 '$LIBPNG_DIR/using_libpng.scons', | 15 '$LIBPNG_DIR/using_libpng.scons', |
16 '$SKIA_DIR/using_skia.scons', | 16 '$SKIA_DIR/using_skia.scons', |
17 '$ZLIB_DIR/using_zlib.scons', | 17 '$ZLIB_DIR/using_zlib.scons', |
18 ]) | 18 ]) |
19 | 19 |
20 if env['PLATFORM'] == 'win32': | 20 if env['PLATFORM'] == 'win32': |
21 env.Prepend( | 21 env.Prepend( |
22 CCFLAGS = [ | 22 CCFLAGS = [ |
23 '/WX', | 23 '/WX', |
24 ], | 24 ], |
25 ) | 25 ) |
26 | 26 |
27 input_files = [ | 27 input_files = [ |
28 'convolver.cc', | |
29 'gdi_util.cc', | 28 'gdi_util.cc', |
30 'image_operations.cc', | |
31 'native_theme.cc', | 29 'native_theme.cc', |
32 'png_decoder.cc', | 30 'png_decoder.cc', |
33 'png_encoder.cc', | 31 'png_encoder.cc', |
34 'point.cc', | 32 'point.cc', |
35 'rect.cc', | 33 'rect.cc', |
36 'size.cc', | 34 'size.cc', |
37 'skia_utils.cc', | |
38 ] | 35 ] |
39 | 36 |
40 if env['PLATFORM'] in ('posix', 'darwin'): | 37 if env['PLATFORM'] in ('posix', 'darwin'): |
41 # Remove files that still need to be ported from the input_files list. | 38 # Remove files that still need to be ported from the input_files list. |
42 # TODO(port): delete files from this list as they get ported. | 39 # TODO(port): delete files from this list as they get ported. |
43 to_be_ported_files = [ | 40 to_be_ported_files = [ |
44 'gdi_util.cc', | 41 'gdi_util.cc', |
45 'native_theme.cc', | 42 'native_theme.cc', |
46 'skia_utils.cc', | |
47 ] | 43 ] |
48 for remove in to_be_ported_files: | 44 for remove in to_be_ported_files: |
49 input_files.remove(remove) | 45 input_files.remove(remove) |
50 | 46 |
51 if env['PLATFORM'] == 'win32': | 47 if env['PLATFORM'] == 'win32': |
52 input_files.extend([ | 48 input_files.extend([ |
53 ]) | 49 ]) |
54 elif env['PLATFORM'] == 'posix': | 50 elif env['PLATFORM'] == 'posix': |
55 input_files.extend([ | 51 input_files.extend([ |
56 ]) | 52 ]) |
57 | 53 |
58 env.ChromeStaticLibrary('base_gfx', input_files) | 54 env.ChromeStaticLibrary('base_gfx', input_files) |
OLD | NEW |