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

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

Issue 857123002: Disable Win32k renderer lockdown if DirectWrite is disabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cloudprint Created 5 years, 11 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
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': [
11 '<(DEPTH)', 11 '<(DEPTH)',
12 # To allow including "version.h" 12 # To allow including "version.h"
13 '<(SHARED_INTERMEDIATE_DIR)', 13 '<(SHARED_INTERMEDIATE_DIR)',
14 ], 14 ],
15 'defines' : [ 15 'defines' : [
16 'COMPILE_CONTENT_STATICALLY', 16 'COMPILE_CONTENT_STATICALLY',
17 'COMPILE_GFX_STATICALLY',
17 'SECURITY_WIN32', 18 'SECURITY_WIN32',
18 'STRICT', 19 'STRICT',
19 '_ATL_APARTMENT_THREADED', 20 '_ATL_APARTMENT_THREADED',
20 '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS', 21 '_ATL_CSTRING_EXPLICIT_CONSTRUCTORS',
21 '_ATL_NO_COM_SUPPORT', 22 '_ATL_NO_COM_SUPPORT',
22 '_ATL_NO_AUTOMATIC_NAMESPACE', 23 '_ATL_NO_AUTOMATIC_NAMESPACE',
23 '_ATL_NO_EXCEPTIONS', 24 '_ATL_NO_EXCEPTIONS',
24 ], 25 ],
25 'conditions': [ 26 'conditions': [
26 ['OS=="win"', { 27 ['OS=="win"', {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'dependencies': [ 93 'dependencies': [
93 '<(DEPTH)/printing/printing.gyp:printing', 94 '<(DEPTH)/printing/printing.gyp:printing',
94 ], 95 ],
95 }], 96 }],
96 ], 97 ],
97 'sources': [ 98 'sources': [
98 '<(DEPTH)/content/public/common/content_switches.h', 99 '<(DEPTH)/content/public/common/content_switches.h',
99 '<(DEPTH)/content/public/common/content_switches.cc', 100 '<(DEPTH)/content/public/common/content_switches.cc',
100 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc', 101 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.cc',
101 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h', 102 '<(DEPTH)/cloud_print/common/win/cloud_print_utils.h',
103 '<(DEPTH)/ui/gfx/switches.cc',
104 '<(DEPTH)/ui/gfx/switches.h',
102 'service_constants.cc', 105 'service_constants.cc',
103 'service_constants.h', 106 'service_constants.h',
104 'service_state.cc', 107 'service_state.cc',
105 'service_state.h', 108 'service_state.h',
106 'service_switches.cc', 109 'service_switches.cc',
107 'service_switches.h', 110 'service_switches.h',
108 'win/chrome_launcher.cc', 111 'win/chrome_launcher.cc',
109 'win/chrome_launcher.h', 112 'win/chrome_launcher.h',
110 'win/local_security_policy.cc', 113 'win/local_security_policy.cc',
111 'win/local_security_policy.h', 114 'win/local_security_policy.h',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 204 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
202 'UACExecutionLevel': '2', # /level='requireAdministrator' 205 'UACExecutionLevel': '2', # /level='requireAdministrator'
203 'AdditionalDependencies': [ 206 'AdditionalDependencies': [
204 'secur32.lib', 207 'secur32.lib',
205 ], 208 ],
206 }, 209 },
207 }, 210 },
208 }, 211 },
209 ], 212 ],
210 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698