| 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 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'installer_util_target': 0, | 8 'installer_util_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 'installer/util/self_cleaning_temp_dir.h', | 172 'installer/util/self_cleaning_temp_dir.h', |
| 173 'installer/util/shell_util.cc', | 173 'installer/util/shell_util.cc', |
| 174 'installer/util/shell_util.h', | 174 'installer/util/shell_util.h', |
| 175 'installer/util/uninstall_metrics.cc', | 175 'installer/util/uninstall_metrics.cc', |
| 176 'installer/util/uninstall_metrics.h', | 176 'installer/util/uninstall_metrics.h', |
| 177 'installer/util/user_experiment.cc', | 177 'installer/util/user_experiment.cc', |
| 178 'installer/util/user_experiment.h', | 178 'installer/util/user_experiment.h', |
| 179 ], | 179 ], |
| 180 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 180 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 181 'msvs_disabled_warnings': [ 4267, ], | 181 'msvs_disabled_warnings': [ 4267, ], |
| 182 'all_dependent_settings': { |
| 183 'msvs_settings': { |
| 184 'VCLinkerTool': { |
| 185 'AdditionalDependencies': [ |
| 186 'urlmon.lib', |
| 187 'wbemuuid.lib', |
| 188 'wtsapi32.lib', |
| 189 ], |
| 190 }, |
| 191 }, |
| 192 }, |
| 193 'msvs_settings': { |
| 194 'VCLinkerTool': { |
| 195 'AdditionalDependencies': [ |
| 196 'urlmon.lib', |
| 197 'wbemuuid.lib', |
| 198 'wtsapi32.lib', |
| 199 ], |
| 200 }, |
| 201 }, |
| 182 }, | 202 }, |
| 183 ], | 203 ], |
| 184 }], | 204 }], |
| 185 ['OS=="win" and target_arch=="ia32"', { | 205 ['OS=="win" and target_arch=="ia32"', { |
| 186 'targets': [ | 206 'targets': [ |
| 187 { | 207 { |
| 188 'target_name': 'installer_util_nacl_win64', | 208 'target_name': 'installer_util_nacl_win64', |
| 189 'type': 'static_library', | 209 'type': 'static_library', |
| 190 'variables': { | 210 'variables': { |
| 191 'installer_util_target': 1, | 211 'installer_util_target': 1, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 203 '../components/metrics/client_info.h', | 223 '../components/metrics/client_info.h', |
| 204 'installer/util/google_chrome_distribution_dummy.cc', | 224 'installer/util/google_chrome_distribution_dummy.cc', |
| 205 'installer/util/master_preferences.h', | 225 'installer/util/master_preferences.h', |
| 206 'installer/util/master_preferences_dummy.cc', | 226 'installer/util/master_preferences_dummy.cc', |
| 207 ], | 227 ], |
| 208 'configurations': { | 228 'configurations': { |
| 209 'Common_Base': { | 229 'Common_Base': { |
| 210 'msvs_target_platform': 'x64', | 230 'msvs_target_platform': 'x64', |
| 211 }, | 231 }, |
| 212 }, | 232 }, |
| 233 'all_dependent_settings': { |
| 234 'msvs_settings': { |
| 235 'VCLinkerTool': { |
| 236 'AdditionalDependencies': [ |
| 237 'wbemuuid.lib', |
| 238 ], |
| 239 }, |
| 240 }, |
| 241 }, |
| 242 'msvs_settings': { |
| 243 'VCLinkerTool': { |
| 244 'AdditionalDependencies': [ |
| 245 'wbemuuid.lib', |
| 246 ], |
| 247 }, |
| 248 }, |
| 213 }, | 249 }, |
| 214 ], | 250 ], |
| 215 }], | 251 }], |
| 216 ['OS!="win"', { | 252 ['OS!="win"', { |
| 217 'targets': [ | 253 'targets': [ |
| 218 { | 254 { |
| 219 # GN version: //chrome/installer/util | 255 # GN version: //chrome/installer/util |
| 220 'target_name': 'installer_util', | 256 'target_name': 'installer_util', |
| 221 'type': 'static_library', | 257 'type': 'static_library', |
| 222 'dependencies': [ | 258 'dependencies': [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 234 ], | 270 ], |
| 235 'include_dirs': [ | 271 'include_dirs': [ |
| 236 '<(DEPTH)', | 272 '<(DEPTH)', |
| 237 ], | 273 ], |
| 238 } | 274 } |
| 239 ], | 275 ], |
| 240 }], | 276 }], |
| 241 | 277 |
| 242 ], | 278 ], |
| 243 } | 279 } |
| OLD | NEW |