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

Side by Side Diff: cloud_print/virtual_driver/win/install/virtual_driver_install.gyp

Issue 10636063: Minor tweeks in virtual driver build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'chromium_code': 1, 8 'chromium_code': 1,
9 }, 9 },
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 'VCLinkerTool': { 79 'VCLinkerTool': {
80 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 80 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
81 'AdditionalDependencies': [ 81 'AdditionalDependencies': [
82 'setupapi.lib', 82 'setupapi.lib',
83 ], 83 ],
84 'DelayLoadDLLs': [ 84 'DelayLoadDLLs': [
85 'winspool.drv', 85 'winspool.drv',
86 ], 86 ],
87 }, 87 },
88 }, 88 },
89 'copies': [
90 {
91 'destination': '<(PRODUCT_DIR)',
92 'files': [
93 '../../GCP-driver.ppd',
94 ],
95 },
96 ],
89 }, 97 },
90 { 98 {
91 'target_name': 'virtual_driver_setup_resources', 99 'target_name': 'virtual_driver_setup_resources',
92 'type': 'none', 100 'type': 'none',
93 'variables': { 101 'variables': {
94 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/virtual_driver_setup_resourc es', 102 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/virtual_driver_setup_resourc es',
95 }, 103 },
96 'actions': [ 104 'actions': [
97 { 105 {
98 'action_name': 'virtual_driver_setup_resources', 106 'action_name': 'virtual_driver_setup_resources',
99 'variables': { 107 'variables': {
100 'grit_grd_file': 'virtual_driver_setup_resources.grd', 108 'grit_grd_file': 'virtual_driver_setup_resources.grd',
101 }, 109 },
102 'includes': [ '../../../../build/grit_action.gypi' ], 110 'includes': [ '../../../../build/grit_action.gypi' ],
103 }, 111 },
104 ], 112 ],
105 'includes': [ '../../../../build/grit_target.gypi' ], 113 'includes': [ '../../../../build/grit_target.gypi' ],
106 }, 114 },
107 ], 115 ],
108 } 116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698