OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # This GYP file stores the dependencies necessary to build Skia on the Android | 6 # This GYP file stores the dependencies necessary to build Skia on the Android |
7 # platform. The OS doesn't provide many stable libraries as part of the | 7 # platform. The OS doesn't provide many stable libraries as part of the |
8 # distribution so we have to build a few of them ourselves. | 8 # distribution so we have to build a few of them ourselves. |
9 # | 9 # |
10 # NOTE: We tried adding the gyp file to the android/ directory at the root of | 10 # NOTE: We tried adding the gyp file to the android/ directory at the root of |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 'include_dirs': [ | 148 'include_dirs': [ |
149 '../../../tools/timer/', | 149 '../../../tools/timer/', |
150 '../../../tools/VisualBench/', | 150 '../../../tools/VisualBench/', |
151 ], | 151 ], |
152 'sources': [ | 152 'sources': [ |
153 '../apps/visualbench/src/main/jni/SkOSWindow_AndroidNative.cpp', | 153 '../apps/visualbench/src/main/jni/SkOSWindow_AndroidNative.cpp', |
154 '../apps/visualbench/src/main/jni/main.cpp', | 154 '../apps/visualbench/src/main/jni/main.cpp', |
155 ], | 155 ], |
156 }, | 156 }, |
157 }, | 157 }, |
158 { | |
159 # This target is a dependency for VisualBench application which runs on | |
160 # Android. Since Android requires us to load native code in shared | |
161 # libraries, we need a common entry point to wrap around main(). Here | |
162 # we also change the type of all would-be executables to be shared | |
163 # libraries. The alternative would be to introduce a condition in every | |
164 # executable target which changes to a shared library if the target OS is | |
165 # Android. This is nicer because the switch is in one place. | |
166 'target_name': 'Android_VisualBenchSDL', | |
167 'type': 'static_library', | |
168 'direct_dependent_settings': { | |
169 'target_conditions': [ | |
170 # '_type' is an 'automatic variable' which is defined for any | |
171 # target which defines a key-value pair with 'type' as the key (so, | |
172 # all of them). Conditionals inside 'target_conditions' are evaluated | |
173 # *after* all other definitions and conditionals are evaluated, so | |
174 # we're guaranteed that '_type' will be defined when we get here. | |
175 # For more info, see: | |
176 # - http://code.google.com/p/gyp/wiki/InputFormatReference#Variables | |
177 # - http://codereview.appspot.com/6353065/ | |
178 ['_type == "executable"', { | |
179 'type': 'shared_library', | |
180 }], | |
181 ], | |
182 }, | |
183 }, | |
184 ] | 158 ] |
185 } | 159 } |
OLD | NEW |