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

Unified Diff: base/base_gfx.scons

Issue 53121: Remove the checked-in scons configuration files. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/base.scons ('k') | base/base_main.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/base_gfx.scons
===================================================================
--- base/base_gfx.scons (revision 12583)
+++ base/base_gfx.scons (working copy)
@@ -1,95 +0,0 @@
-# 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',
- ])
« no previous file with comments | « base/base.scons ('k') | base/base_main.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698