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

Side by Side Diff: cloud_print/service/win/service.gyp

Issue 1240893004: Preliminary support for Windows manifests in the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « cloud_print/service/win/common-controls.manifest ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'target_defaults': { 5 'target_defaults': {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'enable_wexit_time_destructors': 1, 8 'enable_wexit_time_destructors': 1,
9 }, 9 },
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 'service_resources.gypi' 61 'service_resources.gypi'
62 ], 62 ],
63 'dependencies': [ 63 'dependencies': [
64 '<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_reso urces', 64 '<(DEPTH)/cloud_print/cloud_print_resources.gyp:cloud_print_version_reso urces',
65 '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib', 65 '<(DEPTH)/cloud_print/common/common.gyp:cloud_print_install_lib',
66 '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib', 66 '<(DEPTH)/cloud_print/service/service.gyp:cloud_print_service_lib',
67 ], 67 ],
68 'msvs_settings': { 68 'msvs_settings': {
69 'VCManifestTool': { 69 'VCManifestTool': {
70 'AdditionalManifestFiles': [ 70 'AdditionalManifestFiles': [
71 'common-controls.manifest', 71 '<(DEPTH)/build/win/common_controls.manifest',
72 ], 72 ],
73 }, 73 },
74 'VCLinkerTool': { 74 'VCLinkerTool': {
75 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 75 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
76 'UACExecutionLevel': '2', # /level='requireAdministrator' 76 'UACExecutionLevel': '2', # /level='requireAdministrator'
77 'AdditionalDependencies': [ 77 'AdditionalDependencies': [
78 'secur32.lib', 78 'secur32.lib',
79 ], 79 ],
80 }, 80 },
81 'conditions': [ 81 'conditions': [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 119 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
120 'UACExecutionLevel': '2', # /level='requireAdministrator' 120 'UACExecutionLevel': '2', # /level='requireAdministrator'
121 'AdditionalDependencies': [ 121 'AdditionalDependencies': [
122 'secur32.lib', 122 'secur32.lib',
123 ], 123 ],
124 }, 124 },
125 }, 125 },
126 }, 126 },
127 ], 127 ],
128 } 128 }
OLDNEW
« no previous file with comments | « cloud_print/service/win/common-controls.manifest ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698