| 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 }, | 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 '<(DEPTH)/printing/printing.gyp:printing', |
| 21 ], | 22 ], |
| 22 'sources': [ | 23 'sources': [ |
| 23 'service_state.cc', | 24 'service_state.cc', |
| 24 'service_state.h', | 25 'service_state.h', |
| 25 'service_switches.cc', | 26 'service_switches.cc', |
| 26 'service_switches.h', | 27 'service_switches.h', |
| 27 'win/chrome_launcher.cc', | 28 'win/chrome_launcher.cc', |
| 28 'win/chrome_launcher.h', | 29 'win/chrome_launcher.h', |
| 29 'win/local_security_policy.cc', | 30 'win/local_security_policy.cc', |
| 30 'win/local_security_policy.h', | 31 'win/local_security_policy.h', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 57 ['OS=="win"', { | 58 ['OS=="win"', { |
| 58 'dependencies': [ | 59 'dependencies': [ |
| 59 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', | 60 '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', |
| 60 ], | 61 ], |
| 61 }], | 62 }], |
| 62 ], | 63 ], |
| 63 'msvs_settings': { | 64 'msvs_settings': { |
| 64 'VCLinkerTool': { | 65 'VCLinkerTool': { |
| 65 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE | 66 'SubSystem': '1', # Set /SUBSYSTEM:CONSOLE |
| 66 'UACExecutionLevel': '2', # /level='requireAdministrator' | 67 'UACExecutionLevel': '2', # /level='requireAdministrator' |
| 68 'AdditionalDependencies': [ |
| 69 'secur32.lib', |
| 70 ], |
| 67 }, | 71 }, |
| 68 }, | 72 }, |
| 69 }, | 73 }, |
| 70 ], | 74 ], |
| 71 } | 75 } |
| OLD | NEW |