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

Side by Side Diff: gyp/shapeops_demo.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 1
2 { 2 {
3 'includes': [ 3 'includes': [
4 'common.gypi', 4 'common.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'shapeops_demo', 8 'target_name': 'shapeops_demo',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle' : 1, 10 'mac_bundle' : 1,
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 '../experimental/Intersection/Simplify.h', 67 '../experimental/Intersection/Simplify.h',
68 '../experimental/Intersection/TSearch.h', 68 '../experimental/Intersection/TSearch.h',
69 '../experimental/Intersection/TriangleUtilities.h', 69 '../experimental/Intersection/TriangleUtilities.h',
70 ], 70 ],
71 'dependencies': [ 71 'dependencies': [
72 'skia_lib.gyp:skia_lib', 72 'skia_lib.gyp:skia_lib',
73 'views.gyp:views', 73 'views.gyp:views',
74 'xml.gyp:xml', 74 'xml.gyp:xml',
75 ], 75 ],
76 'conditions' : [ 76 'conditions' : [
77 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 77 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
78 }], 78 }],
79 [ 'skia_os == "win"', { 79 [ 'skia_os == "win"', {
80 }], 80 }],
81 [ 'skia_os == "mac"', { 81 [ 'skia_os == "mac"', {
82 'sources': [ 82 'sources': [
83 83
84 # Mac files 84 # Mac files
85 '../src/views/mac/SkEventNotifier.h', 85 '../src/views/mac/SkEventNotifier.h',
86 '../src/views/mac/SkEventNotifier.mm', 86 '../src/views/mac/SkEventNotifier.mm',
87 '../src/views/mac/skia_mac.mm', 87 '../src/views/mac/skia_mac.mm',
(...skipping 27 matching lines...) Expand all
115 }, 115 },
116 }, 116 },
117 ], 117 ],
118 } 118 }
119 119
120 # Local Variables: 120 # Local Variables:
121 # tab-width:2 121 # tab-width:2
122 # indent-tabs-mode:nil 122 # indent-tabs-mode:nil
123 # End: 123 # End:
124 # vim: set expandtab tabstop=2 shiftwidth=2: 124 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698