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

Side by Side Diff: gyp/utils.gyp

Issue 1021823003: Add utils/android/SkAndroidSDKCanvas (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Avoid some overinclusive gypping? Created 5 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
« no previous file with comments | « gyp/gpu.gyp ('k') | src/utils/android/SkAndroidSDKCanvas.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Gyp for utils. 1 # Gyp for utils.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'utils', 5 'target_name': 'utils',
6 'product_name': 'skia_utils', 6 'product_name': 'skia_utils',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'core.gyp:*', 10 'core.gyp:*',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 ], 117 ],
118 }], 118 }],
119 ], 119 ],
120 'direct_dependent_settings': { 120 'direct_dependent_settings': {
121 'include_dirs': [ 121 'include_dirs': [
122 '../include/utils', 122 '../include/utils',
123 '../src/utils', 123 '../src/utils',
124 ], 124 ],
125 }, 125 },
126 }, 126 },
127 {
128 'target_name': 'android_utils',
129 'product_name': 'skia_android_utils',
130 'type': 'static_library',
131 'standalone_static_library': 1,
132 'dependencies': [
133 'core.gyp:*',
134 ],
135 'sources': [
136 '../src/utils/android/SkAndroidSDKCanvas.h',
137 '../src/utils/android/SkAndroidSDKCanvas.cpp',
138 ],
139 'direct_dependent_settings': {
140 'include_dirs': [
141 '../src/utils/android',
142 ],
143 },
144 },
127 ], 145 ],
128 } 146 }
OLDNEW
« no previous file with comments | « gyp/gpu.gyp ('k') | src/utils/android/SkAndroidSDKCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698