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

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: Derek's review, break into new gypi, ask Mike for gyp review 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
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 'includes': [
136 'android_utils.gypi',
mtklein 2015/03/23 16:47:01 Unless you're planning on having these built into
137 ],
138 'include_dirs': [
139 '../include/core',
140 '../include/utils/android',
141 '../src/core',
142 ],
143 'sources': [
144 'android_utils.gypi', # Makes the gypi appear in IDEs (but does not modi fy the build).
145 ],
146 'direct_dependent_settings': {
147 'include_dirs': [
148 '../include/utils/android',
mtklein 2015/03/23 17:49:02 Don't you want to keep this, switched over to '../
tomhudson 2015/03/23 18:06:27 Done.
149 ],
150 },
151 },
127 ], 152 ],
128 } 153 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698