OLD | NEW |
---|---|
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 Loading... | |
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 'include_dirs': [ | |
136 '../include/core', | |
mtklein
2015/03/23 17:49:02
This ought to come from depending on core.gyp:*.
tomhudson
2015/03/23 18:06:27
Done.
| |
137 '../src/core', | |
mtklein
2015/03/23 17:49:02
Looks like you don't use anything from src/core?
tomhudson
2015/03/23 18:06:27
Done.
| |
138 '../src/utils/android', | |
mtklein
2015/03/23 17:49:02
Probably don't need this, given its the sources' d
tomhudson
2015/03/23 18:06:27
Done.
| |
139 ], | |
140 'sources': [ | |
141 '../src/utils/android/SkAndroidSDKCanvas.h', | |
142 '../src/utils/android/SkAndroidSDKCanvas.cpp', | |
143 ], | |
144 }, | |
127 ], | 145 ], |
128 } | 146 } |
OLD | NEW |