OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ ], | |
Nico
2011/08/04 20:53:12
is this needed? remove?
| |
6 'target_defaults': { | 7 'target_defaults': { |
7 'include_dirs': [ | 8 'variables': { 'chromium_code':1}, |
Nico
2011/08/04 20:53:12
space in front of }
abeera
2011/08/04 21:53:35
Done.
| |
8 '../..' | 9 }, |
10 'conditions': [ | |
11 ['OS=="linux"', { | |
12 'target_defaults': { | |
13 'include_dirs': [ | |
14 '../..' | |
15 ], | |
16 }, | |
17 'targets' : [ | |
Nico
2011/08/04 20:53:12
no space in front of :
| |
18 { | |
19 'target_name': 'GCP-driver', | |
20 'type': 'executable', | |
21 'dependencies': [ | |
22 '../../../base/base.gyp:base', | |
23 ], | |
24 'sources' : [ | |
25 'virtual_driver_posix.cc', | |
26 'printer_driver_util_linux.cc', | |
27 '../virtual_driver_switches.cc', | |
28 ] | |
29 }, | |
30 ], | |
31 }], | |
32 ['OS=="mac"', { | |
33 'targets' : [ | |
34 { | |
35 'target_name': 'GCP-driver', | |
Nico
2011/08/04 20:53:12
Looks like this is the same target on linux and ma
abeera
2011/08/04 21:53:35
Done.
| |
36 'type': 'executable', | |
37 'dependencies': [ | |
38 '../../../base/base.gyp:base', | |
39 ], | |
40 'msvs_guid': '8D06D53B-289E-4f99-99FC-77C77DB478A8', | |
Nico
2011/08/04 20:53:12
remove
abeera
2011/08/04 21:53:35
Done.
| |
41 'sources' : [ | |
42 'virtual_driver_posix.cc', | |
43 'printer_driver_util_mac.mm', | |
44 ], | |
45 'xcode_framework_dirs': [ | |
46 '/System/Library/Frameworks/ApplicationServices.framework', | |
47 ], | |
48 }, | |
49 { | |
50 'target_name': 'GCP-install', | |
51 'type': 'executable', | |
52 'dependencies': [ | |
53 '../../../base/base.gyp:base', | |
54 ], | |
55 'msvs_guid': 'FDFBFF64-ABFF-11E0-8D40-62244924019B', | |
56 'sources' : [ | |
57 'install_cloud_print_driver_mac.mm', | |
58 'installer_util_mac.h', | |
59 'installer_util_mac.mm' | |
60 ], | |
61 'xcode_framework_dirs': [ | |
62 '/System/Library/Frameworks/ApplicationServices.framework', | |
63 ], | |
64 }, | |
65 { | |
66 'target_name': 'GCP-uninstall', | |
67 'type': 'executable', | |
68 'dependencies': [ | |
69 '../../../base/base.gyp:base', | |
70 ], | |
71 'msvs_guid': '2762A1E6-AC00-11E0-B879-A7244924019B', | |
72 'sources' : [ | |
73 'installer_util_mac.h', | |
74 'installer_util_mac.mm', | |
75 'uninstall_cloud_print_driver_mac.mm', | |
76 ], | |
77 'xcode_framework_dirs': [ | |
78 '/System/Library/Frameworks/ApplicationServices.framework', | |
79 ], | |
80 }, | |
81 ], | |
82 }], | |
9 ], | 83 ], |
10 }, | |
11 'targets' : [ | |
12 { | |
13 'target_name': 'GCP-driver', | |
14 'type': 'executable', | |
15 'dependencies': [ | |
16 '../../../base/base.gyp:base', | |
17 ], | |
18 'sources' : [ | |
19 'virtual_driver_posix.cc', | |
20 'printer_driver_util_linux.cc', | |
21 '../virtual_driver_switches.cc', | |
22 ] | |
23 }, | |
24 ], | |
25 } | 84 } |
OLD | NEW |