summaryrefslogtreecommitdiffstats
path: root/base/base_gfx.scons
diff options
context:
space:
mode:
Diffstat (limited to 'base/base_gfx.scons')
-rw-r--r--base/base_gfx.scons95
1 files changed, 95 insertions, 0 deletions
diff --git a/base/base_gfx.scons b/base/base_gfx.scons
new file mode 100644
index 0000000..a2d26f0
--- /dev/null
+++ b/base/base_gfx.scons
@@ -0,0 +1,95 @@
+# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+__doc__ = """
+Configuration for building base_gfx.lib / libbase_gfx.a.
+"""
+
+Import('env')
+
+env = env.Clone()
+
+env.ApplySConscript([
+ '$ICU38_DIR/using_icu38.scons',
+ '$LIBJPEG_DIR/using_libjpeg.scons',
+ '$LIBPNG_DIR/using_libpng.scons',
+ '$SKIA_DIR/using_skia.scons',
+ '$ZLIB_DIR/using_zlib.scons',
+])
+
+if env.Bit('windows'):
+ env.Prepend(
+ CCFLAGS = [
+ '/WX',
+ ],
+ )
+
+input_files = ChromeFileList([
+ 'gfx/jpeg_codec.cc',
+ 'gfx/jpeg_codec.h',
+ 'gfx/png_decoder.cc',
+ 'gfx/png_decoder.h',
+ 'gfx/png_encoder.cc',
+ 'gfx/png_encoder.h',
+ 'gfx/point.cc',
+ 'gfx/point.h',
+ 'gfx/rect.cc',
+ 'gfx/rect.h',
+ 'gfx/size.cc',
+ 'gfx/size.h',
+])
+
+if env.Bit('windows'):
+ input_files.Extend([
+ 'gfx/native_theme.cc',
+ 'gfx/native_theme.h',
+ 'gfx/gdi_util.cc',
+ 'gfx/gdi_util.h',
+ ])
+elif env.Bit('linux'):
+ input_files.Extend([
+ 'gfx/gtk_util.cc',
+ 'gfx/gtk_util.h',
+ ])
+
+env.ChromeLibrary('base_gfx', input_files)
+
+p = env.ChromeMSVSProject('build/base_gfx.vcproj',
+ dest='$CHROME_SRC_DIR/base/build/base_gfx.vcproj',
+ guid='{A508ADD3-CECE-4E0F-8448-2F5E454DF551}',
+ keyword='Win32Proj',
+ files=input_files,
+ tools=[
+ 'VCPreBuildEventTool',
+ 'VCCustomBuildTool',
+ 'VCXMLDataGeneratorTool',
+ 'VCWebServiceProxyGeneratorTool',
+ 'VCMIDLTool',
+ 'VCCLCompilerTool',
+ 'VCManagedResourceCompilerTool',
+ 'VCResourceCompilerTool',
+ 'VCPreLinkEventTool',
+ 'VCLibrarianTool',
+ 'VCALinkTool',
+ 'VCXDCMakeTool',
+ 'VCBscMakeTool',
+ 'VCFxCopTool',
+ 'VCPostBuildEventTool',
+ ])
+
+p.AddConfig('Debug|Win32',
+ ConfigurationType = '4',
+ InheritedPropertySheets = [
+ '$(SolutionDir)../build/debug.vsprops',
+ './base_gfx.vsprops',
+ '../../skia/using_skia.vsprops',
+ ])
+
+p.AddConfig('Release|Win32',
+ ConfigurationType = '4',
+ InheritedPropertySheets = [
+ '$(SolutionDir)../build/release.vsprops',
+ './base_gfx.vsprops',
+ '../../skia/using_skia.vsprops',
+ ])