OLD | NEW |
---|---|
(Empty) | |
1 # 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
| |
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 'target_defaults': { | |
7 'variables': { | |
8 }, | |
9 'include_dirs': [ | |
10 '../..' | |
11 ], | |
12 'libraries': [ | |
13 ], | |
14 'sources': [ | |
15 ], | |
16 }, | |
17 'targets' : [ | |
18 { | |
19 'target_name': 'GCP-driver', | |
20 'type': 'executable', | |
21 'dependencies': [ | |
22 '../../../base/base.gyp:base', | |
23 ], | |
24 'msvs_guid': '8D06D53B-289E-4f99-99FC-77C77DB478A8', | |
25 'sources' : [ | |
26 'virtual_driver_posix.cc', | |
27 'printer_driver_util_mac.mm', | |
28 ], | |
29 'xcode_framework_dirs': [ | |
30 '/System/Library/Frameworks/ApplicationServices.framework', | |
31 ], | |
32 }, | |
33 { | |
34 'target_name': 'GCP-install', | |
35 'type': 'executable', | |
36 'dependencies': [ | |
37 '../../../base/base.gyp:base', | |
38 ], | |
39 'msvs_guid': 'FDFBFF64-ABFF-11E0-8D40-62244924019B', | |
40 'sources' : [ | |
41 'install_cloud_print_driver_mac.mm', | |
42 'installer_util_mac.h', | |
43 'installer_util_mac.mm' | |
44 ], | |
45 'xcode_framework_dirs': [ | |
46 '/System/Library/Frameworks/ApplicationServices.framework', | |
47 ], | |
48 }, | |
49 { | |
50 'target_name': 'GCP-uninstall', | |
51 'type': 'executable', | |
52 'dependencies': [ | |
53 '../../../base/base.gyp:base', | |
54 ], | |
55 'msvs_guid': '2762A1E6-AC00-11E0-B879-A7244924019B', | |
56 'sources' : [ | |
57 'uninstall_cloud_print_driver_mac.mm', | |
58 'installer_util_mac.mm', | |
59 'installer_util_mac.h' | |
60 ], | |
61 'xcode_framework_dirs': [ | |
62 '/System/Library/Frameworks/ApplicationServices.framework', | |
63 ], | |
64 }, | |
65 ], | |
66 } | |
OLD | NEW |