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

Side by Side Diff: gyp/core.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 # Core Skia library code. 1 # Core Skia library code.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'core', 5 'target_name': 'core',
6 'product_name': 'skia_core', 6 'product_name': 'skia_core',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', 9 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76',
10 10
(...skipping 11 matching lines...) Expand all
22 '../include/utils', 22 '../include/utils',
23 '../include/xml', 23 '../include/xml',
24 '../src/core', 24 '../src/core',
25 '../src/image', 25 '../src/image',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild). 28 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu ild).
29 ], 29 ],
30 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], 30 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800],
31 'conditions': [ 31 'conditions': [
32 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 32 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
33 'link_settings': { 33 'link_settings': {
34 'libraries': [ 34 'libraries': [
35 '-lpthread', 35 '-lpthread',
36 ], 36 ],
37 }, 37 },
38 }], 38 }],
39 [ 'skia_os == "mac"', { 39 [ 'skia_os == "mac"', {
40 'include_dirs': [ 40 'include_dirs': [
41 '../include/utils/mac', 41 '../include/utils/mac',
42 '../third_party/freetype/include/**', 42 '../third_party/freetype/include/**',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }, 127 },
128 }, 128 },
129 ], 129 ],
130 } 130 }
131 131
132 # Local Variables: 132 # Local Variables:
133 # tab-width:2 133 # tab-width:2
134 # indent-tabs-mode:nil 134 # indent-tabs-mode:nil
135 # End: 135 # End:
136 # vim: set expandtab tabstop=2 shiftwidth=2: 136 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698