| 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.Bit('windows'): |
| 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 'gdi_util.cc', | 28 'gdi_util.cc', |
| 29 'native_theme.cc', | 29 'native_theme.cc', |
| 30 'png_decoder.cc', | 30 'png_decoder.cc', |
| 31 'png_encoder.cc', | 31 'png_encoder.cc', |
| 32 'point.cc', | 32 'point.cc', |
| 33 'rect.cc', | 33 'rect.cc', |
| 34 'size.cc', | 34 'size.cc', |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 if env['PLATFORM'] in ('posix', 'darwin'): | 37 if env.Bit('posix'): |
| 38 # 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. |
| 39 # TODO(port): delete files from this list as they get ported. | 39 # TODO(port): delete files from this list as they get ported. |
| 40 to_be_ported_files = [ | 40 to_be_ported_files = [ |
| 41 'gdi_util.cc', | 41 'gdi_util.cc', |
| 42 'native_theme.cc', | 42 'native_theme.cc', |
| 43 ] | 43 ] |
| 44 for remove in to_be_ported_files: | 44 for remove in to_be_ported_files: |
| 45 input_files.remove(remove) | 45 input_files.remove(remove) |
| 46 | 46 |
| 47 if env['PLATFORM'] == 'win32': | 47 if env.Bit('windows'): |
| 48 input_files.extend([ | 48 input_files.extend([ |
| 49 ]) | 49 ]) |
| 50 elif env['PLATFORM'] == 'posix': | 50 elif env.Bit('linux'): |
| 51 input_files.extend([ | 51 input_files.extend([ |
| 52 ]) | 52 ]) |
| 53 | 53 |
| 54 env.ChromeStaticLibrary('base_gfx', input_files) | 54 env.ChromeStaticLibrary('base_gfx', input_files) |
| OLD | NEW |