We can get into a state where the automation framework sends a search string, which...
[chromium-blink-merge.git] / gears / SConscript.libjpeg
blob4e445b048cdab767e0de0c52ec977d909d716882
1 # Copyright (c) 2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # Ripped and modded from chrome.
7 Import('env')
9 env = env.Clone(
10     LIBJPEG_DIR = ''
13 env.Replace(
14     LIBJPEG_DIR = '$THIRD_PARTY_DIR/libjpeg',
15     CPPPATH = [
16         '$LIBJPEG_DIR',
17         '$VC80_CPPPATH',
18     ],
21 if env['OS'] in ['osx', 'linux']:
22   env.Append(
23       CCFLAGS = [
24           '-Wno-main',
25       ],
26   )
28 input_files = [
29     '$LIBJPEG_DIR/jcapimin.c',
30     '$LIBJPEG_DIR/jcapistd.c',
31     '$LIBJPEG_DIR/jccoefct.c',
32     '$LIBJPEG_DIR/jccolor.c',
33     '$LIBJPEG_DIR/jcdctmgr.c',
34     '$LIBJPEG_DIR/jchuff.c',
35     '$LIBJPEG_DIR/jcinit.c',
36     '$LIBJPEG_DIR/jcmainct.c',
37     '$LIBJPEG_DIR/jcmarker.c',
38     '$LIBJPEG_DIR/jcmaster.c',
39     '$LIBJPEG_DIR/jcomapi.c',
40     '$LIBJPEG_DIR/jcparam.c',
41     '$LIBJPEG_DIR/jcphuff.c',
42     '$LIBJPEG_DIR/jcprepct.c',
43     '$LIBJPEG_DIR/jcsample.c',
44     '$LIBJPEG_DIR/jctrans.c',
45     '$LIBJPEG_DIR/jdapimin.c',
46     '$LIBJPEG_DIR/jdapistd.c',
47     '$LIBJPEG_DIR/jdatadst.c',
48     '$LIBJPEG_DIR/jdatasrc.c',
49     '$LIBJPEG_DIR/jdcoefct.c',
50     '$LIBJPEG_DIR/jdcolor.c',
51     '$LIBJPEG_DIR/jddctmgr.c',
52     '$LIBJPEG_DIR/jdhuff.c',
53     '$LIBJPEG_DIR/jdinput.c',
54     '$LIBJPEG_DIR/jdmainct.c',
55     '$LIBJPEG_DIR/jdmarker.c',
56     '$LIBJPEG_DIR/jdmaster.c',
57     '$LIBJPEG_DIR/jdmerge.c',
58     '$LIBJPEG_DIR/jdphuff.c',
59     '$LIBJPEG_DIR/jdpostct.c',
60     '$LIBJPEG_DIR/jdsample.c',
61     '$LIBJPEG_DIR/jdtrans.c',
62     '$LIBJPEG_DIR/jerror.c',
63     '$LIBJPEG_DIR/jfdctflt.c',
64     '$LIBJPEG_DIR/jfdctfst.c',
65     '$LIBJPEG_DIR/jfdctint.c',
66     '$LIBJPEG_DIR/jidctflt.c',
67     '$LIBJPEG_DIR/jidctfst.c',
68     '$LIBJPEG_DIR/jidctint.c',
69     '$LIBJPEG_DIR/jidctred.c',
70     '$LIBJPEG_DIR/jquant1.c',
71     '$LIBJPEG_DIR/jquant2.c',
72     '$LIBJPEG_DIR/jutils.c',
73     '$LIBJPEG_DIR/jmemmgr.c',
74     '$LIBJPEG_DIR/jmemnobs.c',
77 env.GearsStaticLibrary('jpeg-gears', input_files)