| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 '<(DEPTH)/build/win/common_controls.manifest', | 71 '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 Loading... |
| 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 } |
| OLD | NEW |