Index: gears/SConscript.libjpeg |
diff --git a/gears/SConscript.libjpeg b/gears/SConscript.libjpeg |
deleted file mode 100644 |
index 4e445b048cdab767e0de0c52ec977d909d716882..0000000000000000000000000000000000000000 |
--- a/gears/SConscript.libjpeg |
+++ /dev/null |
@@ -1,77 +0,0 @@ |
-# Copyright (c) 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. |
- |
-# Ripped and modded from chrome. |
- |
-Import('env') |
- |
-env = env.Clone( |
- LIBJPEG_DIR = '' |
-) |
- |
-env.Replace( |
- LIBJPEG_DIR = '$THIRD_PARTY_DIR/libjpeg', |
- CPPPATH = [ |
- '$LIBJPEG_DIR', |
- '$VC80_CPPPATH', |
- ], |
-) |
- |
-if env['OS'] in ['osx', 'linux']: |
- env.Append( |
- CCFLAGS = [ |
- '-Wno-main', |
- ], |
- ) |
- |
-input_files = [ |
- '$LIBJPEG_DIR/jcapimin.c', |
- '$LIBJPEG_DIR/jcapistd.c', |
- '$LIBJPEG_DIR/jccoefct.c', |
- '$LIBJPEG_DIR/jccolor.c', |
- '$LIBJPEG_DIR/jcdctmgr.c', |
- '$LIBJPEG_DIR/jchuff.c', |
- '$LIBJPEG_DIR/jcinit.c', |
- '$LIBJPEG_DIR/jcmainct.c', |
- '$LIBJPEG_DIR/jcmarker.c', |
- '$LIBJPEG_DIR/jcmaster.c', |
- '$LIBJPEG_DIR/jcomapi.c', |
- '$LIBJPEG_DIR/jcparam.c', |
- '$LIBJPEG_DIR/jcphuff.c', |
- '$LIBJPEG_DIR/jcprepct.c', |
- '$LIBJPEG_DIR/jcsample.c', |
- '$LIBJPEG_DIR/jctrans.c', |
- '$LIBJPEG_DIR/jdapimin.c', |
- '$LIBJPEG_DIR/jdapistd.c', |
- '$LIBJPEG_DIR/jdatadst.c', |
- '$LIBJPEG_DIR/jdatasrc.c', |
- '$LIBJPEG_DIR/jdcoefct.c', |
- '$LIBJPEG_DIR/jdcolor.c', |
- '$LIBJPEG_DIR/jddctmgr.c', |
- '$LIBJPEG_DIR/jdhuff.c', |
- '$LIBJPEG_DIR/jdinput.c', |
- '$LIBJPEG_DIR/jdmainct.c', |
- '$LIBJPEG_DIR/jdmarker.c', |
- '$LIBJPEG_DIR/jdmaster.c', |
- '$LIBJPEG_DIR/jdmerge.c', |
- '$LIBJPEG_DIR/jdphuff.c', |
- '$LIBJPEG_DIR/jdpostct.c', |
- '$LIBJPEG_DIR/jdsample.c', |
- '$LIBJPEG_DIR/jdtrans.c', |
- '$LIBJPEG_DIR/jerror.c', |
- '$LIBJPEG_DIR/jfdctflt.c', |
- '$LIBJPEG_DIR/jfdctfst.c', |
- '$LIBJPEG_DIR/jfdctint.c', |
- '$LIBJPEG_DIR/jidctflt.c', |
- '$LIBJPEG_DIR/jidctfst.c', |
- '$LIBJPEG_DIR/jidctint.c', |
- '$LIBJPEG_DIR/jidctred.c', |
- '$LIBJPEG_DIR/jquant1.c', |
- '$LIBJPEG_DIR/jquant2.c', |
- '$LIBJPEG_DIR/jutils.c', |
- '$LIBJPEG_DIR/jmemmgr.c', |
- '$LIBJPEG_DIR/jmemnobs.c', |
-] |
- |
-env.GearsStaticLibrary('jpeg-gears', input_files) |