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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': '../tools/build/version.py', | 9 'version_py_path': '../tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 }], | 98 }], |
99 ], | 99 ], |
100 'msvs_settings': { | 100 'msvs_settings': { |
101 'VCLinkerTool': { | 101 'VCLinkerTool': { |
102 'AdditionalDependencies': [ | 102 'AdditionalDependencies': [ |
103 'secur32.lib', | 103 'secur32.lib', |
104 ], | 104 ], |
105 }, | 105 }, |
106 }, | 106 }, |
107 }, | 107 }, |
| 108 { |
| 109 'target_name': 'cloud_print_install_lib', |
| 110 'type': 'static_library', |
| 111 'dependencies': [ |
| 112 '<(DEPTH)/base/base.gyp:base', |
| 113 ], |
| 114 'sources': [ |
| 115 '<(DEPTH)/cloud_print/common/win/install_utils.cc', |
| 116 '<(DEPTH)/cloud_print/common/win/install_utils.h', |
| 117 ], |
| 118 }, |
108 ], | 119 ], |
109 } | 120 } |
OLD | NEW |