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

Side by Side Diff: gyp/pixman_test.gyp

Issue 16099011: GYP changes and scripts for compiling Skia for ChromeOS (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 6 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
OLDNEW
1 # GYP file to build unit tests. 1 # GYP file to build unit tests.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 'common.gypi', 5 'common.gypi',
6 ], 6 ],
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'pixman_test', 9 'target_name': 'pixman_test',
10 'type': 'executable', 10 'type': 'executable',
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 '../../../pixman/pixman/pixman.h', 118 '../../../pixman/pixman/pixman.h',
119 ], 119 ],
120 'dependencies': [ 120 'dependencies': [
121 'skia_lib.gyp:skia_lib', 121 'skia_lib.gyp:skia_lib',
122 'experimental.gyp:experimental', 122 'experimental.gyp:experimental',
123 'pdf.gyp:pdf', 123 'pdf.gyp:pdf',
124 'views.gyp:views', 124 'views.gyp:views',
125 'xml.gyp:xml', 125 'xml.gyp:xml',
126 ], 126 ],
127 'conditions': [ 127 'conditions': [
128 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 128 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
129 }], 129 }],
130 [ 'skia_os == "win"', { 130 [ 'skia_os == "win"', {
131 }], 131 }],
132 [ 'skia_os == "mac"', { 132 [ 'skia_os == "mac"', {
133 'sources': [ 133 'sources': [
134 134
135 # Mac files 135 # Mac files
136 '../src/views/mac/SkEventNotifier.h', 136 '../src/views/mac/SkEventNotifier.h',
137 '../src/views/mac/SkEventNotifier.mm', 137 '../src/views/mac/SkEventNotifier.mm',
138 '../src/views/mac/skia_mac.mm', 138 '../src/views/mac/skia_mac.mm',
(...skipping 27 matching lines...) Expand all
166 }, 166 },
167 }, 167 },
168 ], 168 ],
169 } 169 }
170 170
171 # Local Variables: 171 # Local Variables:
172 # tab-width:2 172 # tab-width:2
173 # indent-tabs-mode:nil 173 # indent-tabs-mode:nil
174 # End: 174 # End:
175 # vim: set expandtab tabstop=2 shiftwidth=2: 175 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698