2015-03-25 17:22:41 +00:00
|
|
|
# Copyright 2015 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
2015-02-02 20:55:14 +00:00
|
|
|
# GYP file to build hello world example.
|
|
|
|
{
|
2015-06-18 18:49:42 +00:00
|
|
|
'includes': [
|
|
|
|
'apptype_console.gypi',
|
|
|
|
],
|
2015-02-02 20:55:14 +00:00
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'HelloWorld',
|
|
|
|
'type': 'executable',
|
|
|
|
'include_dirs' : [
|
|
|
|
'../include/gpu',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'../example/HelloWorld.h',
|
|
|
|
'../example/HelloWorld.cpp',
|
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'skia_lib.gyp:skia_lib',
|
|
|
|
'views.gyp:views',
|
|
|
|
],
|
|
|
|
},
|
2015-11-13 19:22:19 +00:00
|
|
|
{
|
|
|
|
'target_name': 'SkiaSDLExample',
|
|
|
|
'type': 'executable',
|
|
|
|
'include_dirs' : [
|
|
|
|
'../include/gpu',
|
|
|
|
'../src/gpu',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'../example/SkiaSDLExample.cpp',
|
|
|
|
],
|
|
|
|
'dependencies': [
|
|
|
|
'skia_lib.gyp:skia_lib',
|
|
|
|
'sdl.gyp:sdl',
|
|
|
|
],
|
|
|
|
},
|
2015-02-02 20:55:14 +00:00
|
|
|
],
|
|
|
|
}
|