| OLD | NEW |
| 1 # Copyright 2015 Google Inc. |
| 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 1 # GYP file to send android SkDebug to stdout in addition to logcat. To enable, | 5 # GYP file to send android SkDebug to stdout in addition to logcat. To enable, |
| 2 # include this project as a dependency. | 6 # include this project as a dependency. |
| 3 { | 7 { |
| 4 'targets': [ | 8 'targets': [ |
| 5 { | 9 { |
| 6 'target_name': 'android_output', | 10 'target_name': 'android_output', |
| 7 'type': 'static_library', | 11 'type': 'static_library', |
| 8 'sources': [ | 12 'sources': [ |
| 9 '../tools/AndroidSkDebugToStdOut.cpp', | 13 '../tools/AndroidSkDebugToStdOut.cpp', |
| 10 ], | 14 ], |
| 11 'dependencies': [ | 15 'dependencies': [ |
| 12 'skia_lib.gyp:skia_lib', | 16 'skia_lib.gyp:skia_lib', |
| 13 ], | 17 ], |
| 14 }, | 18 }, |
| 15 ], | 19 ], |
| 16 } | 20 } |
| OLD | NEW |