blob: d50e6fb0a7edd71a1989cdd425db8b27454fffbb [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# Copyright (c) 2009 Google Inc. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'includes': [
7 'symroot.gypi',
8 ],
9 'targets': [
10 {
11 'target_name': 'prog1',
12 'type': 'executable',
13 'dependencies': [
14 'subdir2/prog2.gyp:prog2',
15 ],
16 'include_dirs': [
17 '.',
18 'inc1',
19 'subdir2/inc2',
20 'subdir3/inc3',
21 'subdir2/deeper',
22 ],
23 'sources': [
24 'prog1.c',
25 ],
26 },
27 ],
28}