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

Side by Side Diff: trunk/gyp/core.gyp

Issue 12544011: Gyp changes for NaCl debugger (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: Created 7 years, 9 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 | « no previous file | trunk/gyp/debugger.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 # 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 }], 76 }],
77 [ 'skia_os == "win"', { 77 [ 'skia_os == "win"', {
78 'include_dirs': [ 78 'include_dirs': [
79 'config/win', 79 'config/win',
80 ], 80 ],
81 'sources!': [ 81 'sources!': [
82 '../include/core/SkMMapStream.h', 82 '../include/core/SkMMapStream.h',
83 '../src/core/SkMMapStream.cpp', 83 '../src/core/SkMMapStream.cpp',
84 ], 84 ],
85 }], 85 }],
86 [ 'skia_os == "android"', { 86 [ 'skia_os in ("android", "nacl")', {
87 'dependencies': [ 87 'dependencies': [
88 'freetype.gyp:freetype', 88 'freetype.gyp:freetype',
89 ], 89 ],
90 }], 90 }],
91 [ 'skia_os == "android" and skia_arch_type == "arm" and armv7 == 1', { 91 [ 'skia_os == "android" and skia_arch_type == "arm" and armv7 == 1', {
92 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android. 92 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android.
93 'sources': [ 93 'sources': [
94 '../src/core/SkUtilsArm.cpp', 94 '../src/core/SkUtilsArm.cpp',
95 '../src/core/SkUtilsArm.h', 95 '../src/core/SkUtilsArm.h',
96 ], 96 ],
97 }], 97 }],
98 ['skia_gpu == 1', { 98 ['skia_gpu == 1', {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 ], 135 ],
136 }, 136 },
137 ], 137 ],
138 } 138 }
139 139
140 # Local Variables: 140 # Local Variables:
141 # tab-width:2 141 # tab-width:2
142 # indent-tabs-mode:nil 142 # indent-tabs-mode:nil
143 # End: 143 # End:
144 # vim: set expandtab tabstop=2 shiftwidth=2: 144 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | trunk/gyp/debugger.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698