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 ], | 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 Loading... |
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 } |
OLD | NEW |