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

Side by Side Diff: cloud_print/virtual_driver/posix/backend.gyp

Issue 9307087: Remove code for Mac and Linux virtual print drivers. (Closed)
Patch Set: Nuke linux too Created 8 years, 10 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 unified diff | Download patch
« no previous file with comments | « build/all.gyp ('k') | cloud_print/virtual_driver/posix/install_cloud_print_driver_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | cloud_print/virtual_driver/posix/install_cloud_print_driver_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698