Chromium Code Reviews| 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. |
|
Nico
2011/08/01 21:31:12
Why a new gyp file? Why not add to the existing ba
|
| +# 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', |
| + ], |
| + }, |
| + ], |
| +} |