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

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

Issue 12745003: Switched to version generation with ver files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 '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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'win/local_security_policy.cc', 55 'win/local_security_policy.cc',
56 'win/local_security_policy.h', 56 'win/local_security_policy.h',
57 'win/service_controller.cc', 57 'win/service_controller.cc',
58 'win/service_controller.h', 58 'win/service_controller.h',
59 ], 59 ],
60 }, 60 },
61 { 61 {
62 'target_name': 'cloud_print_service', 62 'target_name': 'cloud_print_service',
63 'type': 'executable', 63 'type': 'executable',
64 'sources': [ 64 'sources': [
65 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_exe_version. rc',
bungeman-chromium 2013/03/18 15:52:30 This target is excluded from the default build and
65 'win/cloud_print_service.cc', 66 'win/cloud_print_service.cc',
66 'win/cloud_print_service.rc', 67 'win/cloud_print_service.rc',
67 'win/resource.h', 68 'win/resource.h',
68 ], 69 ],
69 'dependencies': [ 70 'dependencies': [
70 'cloud_print_service_lib', 71 'cloud_print_service_lib',
71 ], 72 ],
72 'msvs_settings': { 73 'msvs_settings': {
73 'VCLinkerTool': { 74 'VCLinkerTool': {
74 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE 75 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE
75 'UACExecutionLevel': '2', # /level='requireAdministrator' 76 'UACExecutionLevel': '2', # /level='requireAdministrator'
76 'AdditionalDependencies': [ 77 'AdditionalDependencies': [
77 'secur32.lib', 78 'secur32.lib',
78 ], 79 ],
79 }, 80 },
80 }, 81 },
81 }, 82 },
82 ], 83 ],
83 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698