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

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

Issue 10824294: Changed Windows account to run service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | cloud_print/service/service_switches.h » ('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 }, 8 },
9 'include_dirs': [ 9 'include_dirs': [
10 '<(DEPTH)', 10 '<(DEPTH)',
11 ], 11 ],
12 }, 12 },
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'cloud_print_service_lib', 15 'target_name': 'cloud_print_service_lib',
16 'type': 'static_library', 16 'type': 'static_library',
17 'dependencies': [ 17 'dependencies': [
18 '<(DEPTH)/base/base.gyp:base', 18 '<(DEPTH)/base/base.gyp:base',
19 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', 19 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
20 '<(DEPTH)/net/net.gyp:net', 20 '<(DEPTH)/net/net.gyp:net',
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 'service_state.cc', 23 'service_state.cc',
24 'service_state.h', 24 'service_state.h',
25 'service_switches.cc', 25 'service_switches.cc',
26 'service_switches.h', 26 'service_switches.h',
27 'win/chrome_launcher.cc', 27 'win/chrome_launcher.cc',
28 'win/chrome_launcher.h', 28 'win/chrome_launcher.h',
29 'win/local_security_policy.cc',
30 'win/local_security_policy.h',
29 ], 31 ],
30 'conditions': [ 32 'conditions': [
31 ['OS=="win"', { 33 ['OS=="win"', {
32 'dependencies': [ 34 'dependencies': [
33 '<(DEPTH)/chrome/chrome.gyp:launcher_support', 35 '<(DEPTH)/chrome/chrome.gyp:launcher_support',
34 ], 36 ],
35 }], 37 }],
36 ], 38 ],
37 }, 39 },
38 { 40 {
(...skipping 21 matching lines...) Expand all
60 ], 62 ],
61 'msvs_settings': { 63 'msvs_settings': {
62 'VCLinkerTool': { 64 'VCLinkerTool': {
63 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE 65 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
64 'UACExecutionLevel': '2', # /level='requireAdministrator' 66 'UACExecutionLevel': '2', # /level='requireAdministrator'
65 }, 67 },
66 }, 68 },
67 }, 69 },
68 ], 70 ],
69 } 71 }
OLDNEW
« no previous file with comments | « no previous file | cloud_print/service/service_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698