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: pdfium.gyp

Issue 1267493005: Use bundled freetype for tests. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: DEPS picks up corresponding expected results. Created 5 years, 4 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
« no previous file with comments | « DEPS ('k') | samples/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'pdf_use_skia%': 0, 3 'pdf_use_skia%': 0,
4 'conditions': [ 4 'conditions': [
5 ['OS=="linux"', { 5 ['OS=="linux"', {
6 'bundle_freetype%': 0, 6 'bundle_freetype%': 0,
7 }, { # On Android there's no system FreeType. On Windows and Mac, only a 7 }, { # On Android there's no system FreeType. On Windows and Mac, only a
8 # few methods are used from it. 8 # few methods are used from it.
9 'bundle_freetype%': 1, 9 'bundle_freetype%': 1,
10 }], 10 }],
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'public/fpdfview.h', 105 'public/fpdfview.h',
106 ], 106 ],
107 'conditions': [ 107 'conditions': [
108 ['OS!="win"', { 108 ['OS!="win"', {
109 'sources!': [ 109 'sources!': [
110 'fpdfsdk/src/fpdfsdkdll.rc', 110 'fpdfsdk/src/fpdfsdkdll.rc',
111 ], 111 ],
112 }], 112 }],
113 ['bundle_freetype==1', { 113 ['bundle_freetype==1', {
114 'dependencies': [ 114 'dependencies': [
115 'third_party/third_party.gyp:freetype', 115 'third_party/third_party.gyp:fx_freetype',
116 ], 116 ],
117 }, { 117 }, {
118 'link_settings': { 118 'link_settings': {
119 'libraries': [ 119 'libraries': [
120 '-lfreetype', 120 '-lfreetype',
121 ], 121 ],
122 }, 122 },
123 }], 123 }],
124 ], 124 ],
125 'all_dependent_settings': { 125 'all_dependent_settings': {
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 'testing/embedder_test.cpp', 749 'testing/embedder_test.cpp',
750 'testing/embedder_test.h', 750 'testing/embedder_test.h',
751 'testing/embedder_test_mock_delegate.h', 751 'testing/embedder_test_mock_delegate.h',
752 'testing/embedder_test_timer_handling_delegate.h', 752 'testing/embedder_test_timer_handling_delegate.h',
753 'testing/fx_string_testhelpers.cpp', 753 'testing/fx_string_testhelpers.cpp',
754 'testing/fx_string_testhelpers.h', 754 'testing/fx_string_testhelpers.h',
755 ], 755 ],
756 }, 756 },
757 ], 757 ],
758 } 758 }
OLDNEW
« no previous file with comments | « DEPS ('k') | samples/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698