| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 'include_dirs': [ | 170 'include_dirs': [ |
| 171 '../../../tools/timer/', | 171 '../../../tools/timer/', |
| 172 '../../../tools/VisualBench/', | 172 '../../../tools/VisualBench/', |
| 173 ], | 173 ], |
| 174 'sources': [ | 174 'sources': [ |
| 175 '../apps/visualbench/src/main/jni/SkOSWindow_AndroidNative.cpp', | 175 '../apps/visualbench/src/main/jni/SkOSWindow_AndroidNative.cpp', |
| 176 '../apps/visualbench/src/main/jni/main.cpp', | 176 '../apps/visualbench/src/main/jni/main.cpp', |
| 177 ], | 177 ], |
| 178 }, | 178 }, |
| 179 }, | 179 }, |
| 180 { |
| 181 # This target is a dependency for VisualBench application which runs on |
| 182 # Android. Since Android requires us to load native code in shared |
| 183 # libraries, we need a common entry point to wrap around main(). Here |
| 184 # we also change the type of all would-be executables to be shared |
| 185 # libraries. The alternative would be to introduce a condition in every |
| 186 # executable target which changes to a shared library if the target OS is |
| 187 # Android. This is nicer because the switch is in one place. |
| 188 'target_name': 'Android_VisualBenchSDL', |
| 189 'type': 'static_library', |
| 190 'direct_dependent_settings': { |
| 191 'target_conditions': [ |
| 192 # '_type' is an 'automatic variable' which is defined for any |
| 193 # target which defines a key-value pair with 'type' as the key (so, |
| 194 # all of them). Conditionals inside 'target_conditions' are evaluated |
| 195 # *after* all other definitions and conditionals are evaluated, so |
| 196 # we're guaranteed that '_type' will be defined when we get here. |
| 197 # For more info, see: |
| 198 # - http://code.google.com/p/gyp/wiki/InputFormatReference#Variables |
| 199 # - http://codereview.appspot.com/6353065/ |
| 200 ['_type == "executable"', { |
| 201 'type': 'shared_library', |
| 202 }], |
| 203 ], |
| 204 }, |
| 205 }, |
| 180 ] | 206 ] |
| 181 } | 207 } |
| OLD | NEW |