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

Side by Side Diff: BUILD.public

Issue 1418423008: Remove SkJpegCodec.cpp from Google3 BUILD due to differing libjpeg_turbo versions. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « no previous file | src/codec/SkCodec.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Description: 1 # Description:
2 # Skia graphics library. 2 # Skia graphics library.
3 # 3 #
4 # Definitions for Google BUILD file. 4 # Definitions for Google BUILD file.
5 5
6 exports_files(["BUILD.public"]) 6 exports_files(["BUILD.public"])
7 7
8 # Platform-independent SRCS 8 # Platform-independent SRCS
9 SRCS = glob( 9 SRCS = glob(
10 [ 10 [
(...skipping 30 matching lines...) Expand all
41 41
42 # Exclude multiple definitions. 42 # Exclude multiple definitions.
43 # TODO(mtklein): Move to opts? 43 # TODO(mtklein): Move to opts?
44 "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp. 44 "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp.
45 "src/fonts/*fontconfig*", 45 "src/fonts/*fontconfig*",
46 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp", 46 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
47 "src/gpu/gl/GrGLDefaultInterface_native.cpp", 47 "src/gpu/gl/GrGLDefaultInterface_native.cpp",
48 "src/gpu/gl/GrGLDefaultInterface_none.cpp", 48 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
49 49
50 # Exclude files that don't compile with the current DEFINES. 50 # Exclude files that don't compile with the current DEFINES.
51 "src/codec/SkJpegCodec.cpp", # libjpeg_turbo version mismatch.
51 "src/gpu/gl/angle/*", # Requires SK_ANGLE define. 52 "src/gpu/gl/angle/*", # Requires SK_ANGLE define.
52 "src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE' 53 "src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE'
53 "src/gpu/gl/mesa/*", # Requires SK_MESA define. 54 "src/gpu/gl/mesa/*", # Requires SK_MESA define.
54 "src/svg/parser/*", # Missing SkSVG.h. 55 "src/svg/parser/*", # Missing SkSVG.h.
55 56
56 # Not used. 57 # Not used.
57 "src/animator/**/*", 58 "src/animator/**/*",
58 "src/views/**/*", 59 "src/views/**/*",
59 "src/xml/SkBML_Verbs.h", 60 "src/xml/SkBML_Verbs.h",
60 "src/xml/SkBML_XMLParser.cpp", 61 "src/xml/SkBML_XMLParser.cpp",
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 "--images %s/resources" % BASE_DIR, 385 "--images %s/resources" % BASE_DIR,
385 ], 386 ],
386 copts = COPTS, 387 copts = COPTS,
387 data = glob(["resources/**/*"]), 388 data = glob(["resources/**/*"]),
388 defines = DEFINES, 389 defines = DEFINES,
389 includes = DM_INCLUDES, 390 includes = DM_INCLUDES,
390 deps = DM_EXTERNAL_DEPS + [ 391 deps = DM_EXTERNAL_DEPS + [
391 ":skia", 392 ":skia",
392 ], 393 ],
393 ) 394 )
OLDNEW
« no previous file with comments | « no previous file | src/codec/SkCodec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698