OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2011 The Chromium Authors. 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 '../../../build/common.gypi', | |
8 ], | |
9 'target_defaults': { | |
10 'variables': { | |
Albert Bodenhamer
2011/07/08 20:40:13
Remove the section if it isn't needed.
| |
11 }, | |
12 'include_dirs': [ | |
13 '../..' | |
14 ], | |
15 'libraries': [ | |
16 ], | |
17 'sources': [ | |
18 ], | |
19 }, | |
20 'targets' : [ | |
21 { | |
22 'target_name': 'GCP-driver', | |
23 'type': 'executable', | |
24 'dependencies': [ | |
25 '../../../base/base.gyp:base', | |
26 ], | |
27 'msvs_guid': '8D06D53B-289E-4f99-99FC-77C77DB478A8', | |
28 'sources' : [ | |
29 'virtual_driver_posix.cc', | |
Albert Bodenhamer
2011/07/08 20:40:13
Fix indents here
| |
30 'printer_driver_util_linux.cc' | |
31 ] | |
32 }, | |
33 ], | |
34 } | |
35 | |
36 # Local Variables: | |
37 # tab-width:2 | |
38 # indent-tabs-mode:nil | |
39 # End: | |
40 # vim: set expandtab tabstop=2 shiftwidth=2: | |
OLD | NEW |