blob: 769e7309b046d65c6b454e764adef46d0895841b [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.
caryclark52edc4d2015-02-02 12:55:14 -08005# GYP file to build hello world example.
6{
bsalomon241b56d2015-06-18 11:49:42 -07007 'includes': [
8 'apptype_console.gypi',
9 ],
caryclark52edc4d2015-02-02 12:55:14 -080010 'targets': [
11 {
12 'target_name': 'HelloWorld',
13 'type': 'executable',
caryclark52edc4d2015-02-02 12:55:14 -080014 'include_dirs' : [
mtklein928e1652015-07-01 11:55:42 -070015 '../include/private',
caryclark52edc4d2015-02-02 12:55:14 -080016 '../include/gpu',
17 ],
18 'sources': [
19 '../example/HelloWorld.h',
20 '../example/HelloWorld.cpp',
21 ],
22 'dependencies': [
23 'skia_lib.gyp:skia_lib',
24 'views.gyp:views',
25 ],
caryclark52edc4d2015-02-02 12:55:14 -080026 },
27 ],
28}