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. 5# GYP file to send android SkDebug to stdout in addition to logcat. To enable, 6# include this project as a dependency. 7{ 8 'targets': [ 9 { 10 'target_name': 'android_output', 11 'type': 'static_library', 12 'sources': [ 13 '../tools/AndroidSkDebugToStdOut.cpp', 14 ], 15 'dependencies': [ 16 'skia_lib.gyp:skia_lib', 17 ], 18 }, 19 ], 20} 21