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

Side by Side Diff: gyp/core.gyp

Issue 24075010: We don't flatten or unflatten SkPaintOptionsAndroid. Reproduce and fix. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: sync to head Created 7 years, 2 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 | gyp/core.gypi » ('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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ', 69 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ',
70 ], 70 ],
71 }, 71 },
72 }], 72 }],
73 [ 'skia_os == "win"', { 73 [ 'skia_os == "win"', {
74 'include_dirs': [ 74 'include_dirs': [
75 'config/win', 75 'config/win',
76 ], 76 ],
77 }], 77 }],
78 [ 'skia_os == "android"', { 78 [ 'skia_os == "android"', {
79 'sources': [
80 '../src/core/SkPaintOptionsAndroid.cpp',
81 ],
82 'dependencies': [ 79 'dependencies': [
83 'android_deps.gyp:cpu_features', 80 'android_deps.gyp:cpu_features',
84 ], 81 ],
85 }], 82 }],
86 [ 'skia_arch_type == "arm"', { 83 [ 'skia_arch_type == "arm"', {
87 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android. 84 # The code in SkUtilsArm.cpp can be used on an ARM-based Linux system, not only Android.
88 'sources': [ 85 'sources': [
89 '../src/core/SkUtilsArm.cpp', 86 '../src/core/SkUtilsArm.cpp',
90 '../src/core/SkUtilsArm.h', 87 '../src/core/SkUtilsArm.h',
91 ], 88 ],
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 }, 124 },
128 }, 125 },
129 ], 126 ],
130 } 127 }
131 128
132 # Local Variables: 129 # Local Variables:
133 # tab-width:2 130 # tab-width:2
134 # indent-tabs-mode:nil 131 # indent-tabs-mode:nil
135 # End: 132 # End:
136 # vim: set expandtab tabstop=2 shiftwidth=2: 133 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | gyp/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698