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

Side by Side Diff: third_party/libjpeg/BUILD.gn

Issue 224633002: Add GN buildfile for gfx (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « skia/skia_gn_files.gypi ('k') | tools/gn/builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2014 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.
4
5 source_set("libjpeg") {
6 sources = [
7 "jcapimin.c",
8 "jcapistd.c",
9 "jccoefct.c",
10 "jccolor.c",
11 "jcdctmgr.c",
12 "jchuff.c",
13 "jchuff.h",
14 "jcinit.c",
15 "jcmainct.c",
16 "jcmarker.c",
17 "jcmaster.c",
18 "jcomapi.c",
19 "jconfig.h",
20 "jcparam.c",
21 "jcphuff.c",
22 "jcprepct.c",
23 "jcsample.c",
24 "jdapimin.c",
25 "jdapistd.c",
26 "jdatadst.c",
27 "jdatasrc.c",
28 "jdcoefct.c",
29 "jdcolor.c",
30 "jdct.h",
31 "jddctmgr.c",
32 "jdhuff.c",
33 "jdhuff.h",
34 "jdinput.c",
35 "jdmainct.c",
36 "jdmarker.c",
37 "jdmaster.c",
38 "jdmerge.c",
39 "jdphuff.c",
40 "jdpostct.c",
41 "jdsample.c",
42 "jerror.c",
43 "jerror.h",
44 "jfdctflt.c",
45 "jfdctfst.c",
46 "jfdctint.c",
47 "jidctflt.c",
48 "jidctfst.c",
49 "jidctint.c",
50 "jinclude.h",
51 "jmemmgr.c",
52 "jmemnobs.c",
53 "jmemsys.h",
54 "jmorecfg.h",
55 "jpegint.h",
56 "jpeglib.h",
57 "jquant1.c",
58 "jquant2.c",
59 "jutils.c",
60 "jversion.h",
61 ]
62
63 defines = [ "NO_GETENV" ] # getenv() is not thread-safe.
64
65 configs -= [ "//build/config/compiler:chromium_code" ]
66 configs += [ "//build/config/compiler:no_chromium_code" ]
67 }
OLDNEW
« no previous file with comments | « skia/skia_gn_files.gypi ('k') | tools/gn/builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698