Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: cloud_print/virtual_driver/linux/backend.gyp

Issue 7222011: Linux Virtual Printer Driver (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Virtual Print Driver Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698