skia2/gyp/example.gyp
mtklein 928e16565f Move headers used by headers in include/ to include/private.
Some of this is transitive, like SkRecords.h used by SkMiniRecorder.h
used by (public) SkPictureRecorder.h.

BUG=skia:

Committed: https://skia.googlesource.com/skia/+/a89f55198bdc58f0b6f6196907ab25a6afc1a661

Review URL: https://codereview.chromium.org/1217293004
2015-07-01 11:55:42 -07:00

29 lines
606 B
Python

# Copyright 2015 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# GYP file to build hello world example.
{
'includes': [
'apptype_console.gypi',
],
'targets': [
{
'target_name': 'HelloWorld',
'type': 'executable',
'include_dirs' : [
'../include/private',
'../include/gpu',
],
'sources': [
'../example/HelloWorld.h',
'../example/HelloWorld.cpp',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
'views.gyp:views',
],
},
],
}