OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # GYP file to build hello world example. | 5 # GYP file to build hello world example. |
6 { | 6 { |
7 'includes': [ | 7 'includes': [ |
8 'apptype_console.gypi', | 8 'apptype_console.gypi', |
9 ], | 9 ], |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'HelloWorld', | 12 'target_name': 'HelloWorld', |
13 'type': 'executable', | 13 'type': 'executable', |
14 'include_dirs' : [ | 14 'include_dirs' : [ |
15 '../include/private', | |
16 '../include/gpu', | 15 '../include/gpu', |
17 ], | 16 ], |
18 'sources': [ | 17 'sources': [ |
19 '../example/HelloWorld.h', | 18 '../example/HelloWorld.h', |
20 '../example/HelloWorld.cpp', | 19 '../example/HelloWorld.cpp', |
21 ], | 20 ], |
22 'dependencies': [ | 21 'dependencies': [ |
23 'skia_lib.gyp:skia_lib', | 22 'skia_lib.gyp:skia_lib', |
24 'views.gyp:views', | 23 'views.gyp:views', |
25 ], | 24 ], |
26 }, | 25 }, |
27 ], | 26 ], |
28 } | 27 } |
OLD | NEW |