| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 ], | 250 ], |
| 251 }], | 251 }], |
| 252 ['OS!="win"', { | 252 ['OS!="win"', { |
| 253 'targets': [ | 253 'targets': [ |
| 254 { | 254 { |
| 255 # GN version: //chrome/installer/util | 255 # GN version: //chrome/installer/util |
| 256 'target_name': 'installer_util', | 256 'target_name': 'installer_util', |
| 257 'type': 'static_library', | 257 'type': 'static_library', |
| 258 'dependencies': [ | 258 'dependencies': [ |
| 259 '<(DEPTH)/base/base.gyp:base', | 259 '<(DEPTH)/base/base.gyp:base', |
| 260 '<(DEPTH)/chrome/chrome_features.gyp:chrome_common_features', |
| 260 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 261 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 261 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 262 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 262 '<(DEPTH)/components/components.gyp:variations', | 263 '<(DEPTH)/components/components.gyp:variations', |
| 263 ], | 264 ], |
| 264 'sources': [ | 265 'sources': [ |
| 265 # Note: sources list duplicated in GN build. | 266 # Note: sources list duplicated in GN build. |
| 266 'installer/util/master_preferences.cc', | 267 'installer/util/master_preferences.cc', |
| 267 'installer/util/master_preferences.h', | 268 'installer/util/master_preferences.h', |
| 268 'installer/util/master_preferences_constants.cc', | 269 'installer/util/master_preferences_constants.cc', |
| 269 'installer/util/master_preferences_constants.h', | 270 'installer/util/master_preferences_constants.h', |
| 270 ], | 271 ], |
| 271 'include_dirs': [ | 272 'include_dirs': [ |
| 272 '<(DEPTH)', | 273 '<(DEPTH)', |
| 273 ], | 274 ], |
| 274 } | 275 } |
| 275 ], | 276 ], |
| 276 }], | 277 }], |
| 277 | 278 |
| 278 ], | 279 ], |
| 279 } | 280 } |
| OLD | NEW |