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

Side by Side Diff: third_party/third_party.gyp

Issue 1431863006: Fix incorrect paths in third_party.gyp. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'defines': [ 7 'defines': [
8 'OPJ_STATIC', 8 'OPJ_STATIC',
9 '_CRT_SECURE_NO_WARNINGS', 9 '_CRT_SECURE_NO_WARNINGS',
10 ], 10 ],
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ], 42 ],
43 'include_dirs': [ 43 'include_dirs': [
44 'freetype/include', 44 'freetype/include',
45 'freetype/include/freetype', 45 'freetype/include/freetype',
46 ], 46 ],
47 'sources': [ 47 'sources': [
48 'freetype/include/freetype/freetype.h', 48 'freetype/include/freetype/freetype.h',
49 'freetype/include/freetype/ftmm.h', 49 'freetype/include/freetype/ftmm.h',
50 'freetype/include/freetype/ftotval.h', 50 'freetype/include/freetype/ftotval.h',
51 'freetype/include/freetype/ftoutln.h', 51 'freetype/include/freetype/ftoutln.h',
52 'freetype/include/freetype/internal/freetype/ftobjs.h', 52 'freetype/include/freetype/internal/ftobjs.h',
53 'freetype/include/freetype/internal/freetype/ftstream.h', 53 'freetype/include/freetype/internal/ftstream.h',
54 'freetype/include/freetype/internal/freetype/tttypes.h', 54 'freetype/include/freetype/internal/tttypes.h',
55 'freetype/include/freetype/tttables.h', 55 'freetype/include/freetype/tttables.h',
56 'freetype/include/ft2build.h', 56 'freetype/include/ft2build.h',
57 'freetype/src/cff/cffobjs.h',
58 'freetype/src/cff/cfftypes.h',
59 'freetype/src/cff/cff.c',
60 'freetype/src/base/ftbase.c', 57 'freetype/src/base/ftbase.c',
61 'freetype/src/base/ftbase.h', 58 'freetype/src/base/ftbase.h',
62 'freetype/src/base/ftbitmap.c', 59 'freetype/src/base/ftbitmap.c',
63 'freetype/src/base/ftglyph.c', 60 'freetype/src/base/ftglyph.c',
64 'freetype/src/base/ftinit.c', 61 'freetype/src/base/ftinit.c',
65 'freetype/src/base/ftlcdfil.c', 62 'freetype/src/base/ftlcdfil.c',
66 'freetype/src/base/ftmm.c', 63 'freetype/src/base/ftmm.c',
67 'freetype/src/base/ftsystem.c', 64 'freetype/src/base/ftsystem.c',
65 'freetype/src/cff/cff.c',
66 'freetype/src/cff/cffobjs.h',
67 'freetype/src/cff/cfftypes.h',
68 'freetype/src/cid/type1cid.c',
68 'freetype/src/psaux/psaux.c', 69 'freetype/src/psaux/psaux.c',
69 'freetype/src/pshinter/pshinter.c', 70 'freetype/src/pshinter/pshinter.c',
70 'freetype/src/psnames/psmodule.c', 71 'freetype/src/psnames/psmodule.c',
71 'freetype/src/raster/raster.c', 72 'freetype/src/raster/raster.c',
72 'freetype/src/sfnt/sfnt.c', 73 'freetype/src/sfnt/sfnt.c',
73 'freetype/src/smooth/smooth.c', 74 'freetype/src/smooth/smooth.c',
74 'freetype/src/truetype/truetype.c', 75 'freetype/src/truetype/truetype.c',
75 'freetype/src/type1/type1.c', 76 'freetype/src/type1/type1.c',
76 'freetype/src/cid/type1cid.c',
77 ], 77 ],
78 'variables': { 78 'variables': {
79 'clang_warning_flags': [ 79 'clang_warning_flags': [
80 # open_face_PS_from_sfnt_stream() and open_face_from_buffer() in 80 # open_face_PS_from_sfnt_stream() and open_face_from_buffer() in
81 # ftbase.h are unused. 81 # ftbase.h are unused.
82 '-Wno-unused-function', 82 '-Wno-unused-function',
83 ], 83 ],
84 }, 84 },
85 }, 85 },
86 { 86 {
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 'base/numerics/safe_conversions.h', 290 'base/numerics/safe_conversions.h',
291 'base/numerics/safe_conversions_impl.h', 291 'base/numerics/safe_conversions_impl.h',
292 'base/numerics/safe_math.h', 292 'base/numerics/safe_math.h',
293 'base/numerics/safe_math_impl.h', 293 'base/numerics/safe_math_impl.h',
294 'base/stl_util.h', 294 'base/stl_util.h',
295 'base/template_util.h', 295 'base/template_util.h',
296 ], 296 ],
297 }, 297 },
298 ], 298 ],
299 } 299 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698