| OLD | NEW |
| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'service_state.cc', | 50 'service_state.cc', |
| 51 'service_state.h', | 51 'service_state.h', |
| 52 'service_switches.cc', | 52 'service_switches.cc', |
| 53 'service_switches.h', | 53 'service_switches.h', |
| 54 'win/chrome_launcher.cc', | 54 'win/chrome_launcher.cc', |
| 55 'win/chrome_launcher.h', | 55 'win/chrome_launcher.h', |
| 56 'win/local_security_policy.cc', | 56 'win/local_security_policy.cc', |
| 57 'win/local_security_policy.h', | 57 'win/local_security_policy.h', |
| 58 'win/service_controller.cc', | 58 'win/service_controller.cc', |
| 59 'win/service_controller.h', | 59 'win/service_controller.h', |
| 60 'win/service_utils.cc', |
| 61 'win/service_utils.h', |
| 60 ], | 62 ], |
| 61 }, | 63 }, |
| 62 { | 64 { |
| 63 'target_name': 'cloud_print_service', | 65 'target_name': 'cloud_print_service', |
| 64 'type': 'executable', | 66 'type': 'executable', |
| 65 'sources': [ | 67 'sources': [ |
| 66 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_exe_version.
rc', | 68 '<(SHARED_INTERMEDIATE_DIR)/cloud_print/cloud_print_service_exe_version.
rc', |
| 67 'win/cloud_print_service.cc', | 69 'win/cloud_print_service.cc', |
| 68 'win/cloud_print_service.rc', | 70 'win/cloud_print_service.rc', |
| 69 ], | 71 ], |
| 70 'dependencies': [ | 72 'dependencies': [ |
| 71 'cloud_print_service_lib', | 73 'cloud_print_service_lib', |
| 72 ], | 74 ], |
| 73 'msvs_settings': { | 75 'msvs_settings': { |
| 74 'VCLinkerTool': { | 76 'VCLinkerTool': { |
| 75 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE | 77 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE |
| 76 'UACExecutionLevel': '2', # /level='requireAdministrator' | 78 'UACExecutionLevel': '2', # /level='requireAdministrator' |
| 77 'AdditionalDependencies': [ | 79 'AdditionalDependencies': [ |
| 78 'secur32.lib', | 80 'secur32.lib', |
| 79 ], | 81 ], |
| 80 }, | 82 }, |
| 81 }, | 83 }, |
| 82 }, | 84 }, |
| 83 ], | 85 ], |
| 84 } | 86 } |
| OLD | NEW |