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

Unified Diff: gears/SConscript.libjpeg

Issue 232: Initial Gears SConscript file. Doesn't build yet. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 3 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 | « gears/SConscript.libgd ('k') | gears/SConscript.libpng » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gears/SConscript.libjpeg
===================================================================
--- gears/SConscript.libjpeg (revision 0)
+++ gears/SConscript.libjpeg (revision 0)
@@ -0,0 +1,74 @@
+# 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',
+ ],
+)
+
+#env.Append(
+# CPPDEFINES = [
+# ],
+#)
+
+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.ChromeStaticLibrary('jpeg', input_files)
« no previous file with comments | « gears/SConscript.libgd ('k') | gears/SConscript.libpng » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698