blob: 96599e17e5c5b848d08e47fb30c2598672a3a2d3 [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# 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.
scroggo6cfce1b2014-12-10 10:23:04 -08005# 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}