| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 # we're guaranteed that '_type' will be defined when we get here. | 310 # we're guaranteed that '_type' will be defined when we get here. |
| 311 # For more info, see: | 311 # For more info, see: |
| 312 # - http://code.google.com/p/gyp/wiki/InputFormatReference#Variables | 312 # - http://code.google.com/p/gyp/wiki/InputFormatReference#Variables |
| 313 # - http://codereview.appspot.com/6353065/ | 313 # - http://codereview.appspot.com/6353065/ |
| 314 ['_type == "executable"', { | 314 ['_type == "executable"', { |
| 315 'type': 'shared_library', | 315 'type': 'shared_library', |
| 316 }], | 316 }], |
| 317 ], | 317 ], |
| 318 'include_dirs': [ | 318 'include_dirs': [ |
| 319 '../../../tools/timer/', | 319 '../../../tools/timer/', |
| 320 '../../../tools/VisualBench/', |
| 320 ], | 321 ], |
| 321 'sources': [ | 322 'sources': [ |
| 322 '../visualbench/jni/SkOSWindow_AndroidNative.cpp', | 323 '../visualbench/jni/SkOSWindow_AndroidNative.cpp', |
| 323 '../visualbench/jni/main.cpp', | 324 '../visualbench/jni/main.cpp', |
| 324 ], | 325 ], |
| 325 }, | 326 }, |
| 326 }, | 327 }, |
| 327 ] | 328 ] |
| 328 } | 329 } |
| OLD | NEW |