diff options
author | abeera@google.com <abeera@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 17:38:52 +0000 |
---|---|---|
committer | abeera@google.com <abeera@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 17:38:52 +0000 |
commit | 509d9b37a4c35fbc6210b3232d79e777cec0ff3a (patch) | |
tree | 9ff690ab8e871d3d67e66f6e061ac6384c4347e9 /cloud_print/virtual_driver/posix/backend.gyp | |
parent | 807f0e14337e705ce0ede8e1107b8704321b861c (diff) | |
download | chromium_src-509d9b37a4c35fbc6210b3232d79e777cec0ff3a.zip chromium_src-509d9b37a4c35fbc6210b3232d79e777cec0ff3a.tar.gz chromium_src-509d9b37a4c35fbc6210b3232d79e777cec0ff3a.tar.bz2 |
Additional Commits for Linux printer driver
Initial commit for Linux virtual printer
BUG=
TEST=
Review URL: http://codereview.chromium.org/7222011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92378 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cloud_print/virtual_driver/posix/backend.gyp')
-rw-r--r-- | cloud_print/virtual_driver/posix/backend.gyp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cloud_print/virtual_driver/posix/backend.gyp b/cloud_print/virtual_driver/posix/backend.gyp new file mode 100644 index 0000000..8492a80 --- /dev/null +++ b/cloud_print/virtual_driver/posix/backend.gyp @@ -0,0 +1,32 @@ +# Copyright (c) 2011 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'target_defaults': { + 'include_dirs': [ + '../..' + ], + }, + 'targets' : [ + { + 'target_name': 'GCP-driver', + 'type': 'executable', + 'dependencies': [ + '../../../base/base.gyp:base', + ], + 'msvs_guid': '8D06D53B-289E-4f99-99FC-77C77DB478A8', + 'sources' : [ + 'virtual_driver_posix.cc', + 'printer_driver_util_linux.cc', + '../virtual_driver_switches.cc', + ] + }, + ], +} + +# Local Variables: +# tab-width:2 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=2 shiftwidth=2: |