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

Unified Diff: cloud_print/virtual_driver/posix/mac_backend.gyp

Issue 7485011: Virtual Cloud Print Driver for Mac. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Further style fixes. 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 side-by-side diff with in-line comments
Download patch
Index: cloud_print/virtual_driver/posix/mac_backend.gyp
diff --git a/cloud_print/virtual_driver/posix/mac_backend.gyp b/cloud_print/virtual_driver/posix/mac_backend.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..8884faa47f7dad78911dc86a2ede31e76ed7938d
--- /dev/null
+++ b/cloud_print/virtual_driver/posix/mac_backend.gyp
@@ -0,0 +1,66 @@
+# 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': {
+ 'variables': {
+ },
+ 'include_dirs': [
+ '../..'
+ ],
+ 'libraries': [
+ ],
+ 'sources': [
+ ],
+ },
+ '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_mac.mm',
+ ],
+ 'xcode_framework_dirs': [
+ '/System/Library/Frameworks/ApplicationServices.framework',
+ ],
+ },
+ {
+ 'target_name': 'GCP-install',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../../base/base.gyp:base',
+ ],
+ 'msvs_guid': 'FDFBFF64-ABFF-11E0-8D40-62244924019B',
+ 'sources' : [
+ 'install_cloud_print_driver_mac.mm',
+ 'installer_util_mac.h',
+ 'installer_util_mac.mm'
+ ],
+ 'xcode_framework_dirs': [
+ '/System/Library/Frameworks/ApplicationServices.framework',
+ ],
+ },
+ {
+ 'target_name': 'GCP-uninstall',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../../base/base.gyp:base',
+ ],
+ 'msvs_guid': '2762A1E6-AC00-11E0-B879-A7244924019B',
+ 'sources' : [
+ 'uninstall_cloud_print_driver_mac.mm',
+ 'installer_util_mac.mm',
+ 'installer_util_mac.h'
+ ],
+ 'xcode_framework_dirs': [
+ '/System/Library/Frameworks/ApplicationServices.framework',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698