OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'target_defaults': { | |
Nico
2012/02/03 23:58:39
This file shows up as 'M' instead of 'D'?
| |
7 'variables': { 'chromium_code':1 }, | |
8 }, | |
9 'targets': [ | |
10 { | |
11 'target_name': 'GCP-driver', | |
12 'type': 'executable', | |
13 'dependencies': [ | |
14 '../../../base/base.gyp:base', | |
15 ], | |
16 'sources': [ | |
17 'printer_driver_util_linux.cc', | |
18 'printer_driver_util_posix.cc', | |
19 'printer_driver_util_posix.h', | |
20 'printer_driver_util_mac.mm', | |
21 'virtual_driver_posix.cc', | |
22 '../virtual_driver_switches.cc', | |
23 '../virtual_driver_switches.h', | |
24 ], | |
25 'conditions': [ | |
26 ['OS=="mac"', { | |
27 'sources!': ['../virtual_driver_switches.cc'], | |
28 'libraries': ['ScriptingBridge.framework'], | |
29 }], | |
30 ], | |
31 }, | |
32 { | |
33 'target_name': 'virtual_driver_posix_unittests', | |
34 'type': 'executable', | |
35 'dependencies': [ | |
36 '../../../base/base.gyp:base', | |
37 '../../../base/base.gyp:test_support_base', | |
38 '../../../testing/gmock.gyp:gmock', | |
39 '../../../testing/gtest.gyp:gtest', | |
40 ], | |
41 'sources': [ | |
42 'virtual_driver_posix_tests.cc', | |
43 'printer_driver_util_posix.cc', | |
44 ], | |
45 }], | |
46 'conditions': [ | |
47 ['OS=="mac"', { | |
48 'targets' : [ | |
49 { | |
50 'target_name': 'GCP-install', | |
51 'type': 'executable', | |
52 'dependencies': [ | |
53 '../../../base/base.gyp:base', | |
54 ], | |
55 'sources' : [ | |
56 'install_cloud_print_driver_mac.mm', | |
57 'installer_util_mac.h', | |
58 'installer_util_mac.mm' | |
59 ], | |
60 }, | |
61 { | |
62 'target_name': 'GCP-uninstall', | |
63 'type': 'executable', | |
64 'dependencies': [ | |
65 '../../../base/base.gyp:base', | |
66 ], | |
67 'sources' : [ | |
68 'installer_util_mac.h', | |
69 'installer_util_mac.mm', | |
70 'uninstall_cloud_print_driver_mac.mm', | |
71 ], | |
72 }, | |
73 ], | |
74 }], | |
75 ], | |
76 } | |
OLD | NEW |