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

Side by Side Diff: gyp/gm.gyp

Issue 23190020: Revert "The CL adds libpoppler to DEPS and adds a libpoppler-cpp gyp target for Linux, Windows, and… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gyp/freetype.gypi ('k') | gyp/iconv.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build the "gm" (golden master) executable. 1 # GYP file to build the "gm" (golden master) executable.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'gm_expectations', 8 'target_name': 'gm_expectations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs' : [ 10 'include_dirs' : [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 '../src/utils/debugger/SkObjectParser.cpp', 53 '../src/utils/debugger/SkObjectParser.cpp',
54 ], 54 ],
55 'dependencies': [ 55 'dependencies': [
56 'skia_lib.gyp:skia_lib', 56 'skia_lib.gyp:skia_lib',
57 'flags.gyp:flags', 57 'flags.gyp:flags',
58 'gm.gyp:gm_expectations', 58 'gm.gyp:gm_expectations',
59 'jsoncpp.gyp:jsoncpp', 59 'jsoncpp.gyp:jsoncpp',
60 'pdf.gyp:pdf', 60 'pdf.gyp:pdf',
61 ], 61 ],
62 'conditions': [ 62 'conditions': [
63 ['skia_os in ["linux", "mac", "win"]', {
64 'dependencies': [
65 'poppler.gyp:libpoppler-cpp-gpl',
66 ],
67 'sources': [
68 '../src/utils/SkPDFRasterizer.cpp',
69 ],
70 'defines': [
71 'SK_BUILD_POPPLER',
72 ],
73 }],
74 ['skia_os == "mac"', { 63 ['skia_os == "mac"', {
75 'sources!': [ 64 'sources!': [
76 '../gm/system_preferences_default.cpp', 65 '../gm/system_preferences_default.cpp',
77 ], 66 ],
78 'sources': [ 67 'sources': [
79 '../gm/system_preferences_mac.mm', 68 '../gm/system_preferences_mac.mm',
80 ], 69 ],
81 'link_settings': { 70 'link_settings': {
82 'libraries': [ 71 'libraries': [
83 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', 72 '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
(...skipping 14 matching lines...) Expand all
98 ], 87 ],
99 }, 88 },
100 ], 89 ],
101 } 90 }
102 91
103 # Local Variables: 92 # Local Variables:
104 # tab-width:2 93 # tab-width:2
105 # indent-tabs-mode:nil 94 # indent-tabs-mode:nil
106 # End: 95 # End:
107 # vim: set expandtab tabstop=2 shiftwidth=2: 96 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/freetype.gypi ('k') | gyp/iconv.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698