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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 'Common_Base': { | 202 'Common_Base': { |
203 'msvs_target_platform': 'x64', | 203 'msvs_target_platform': 'x64', |
204 }, | 204 }, |
205 }, | 205 }, |
206 }, | 206 }, |
207 ], | 207 ], |
208 }], | 208 }], |
209 ['OS!="win"', { | 209 ['OS!="win"', { |
210 'targets': [ | 210 'targets': [ |
211 { | 211 { |
| 212 # GN version: //chrome/installer/util |
212 'target_name': 'installer_util', | 213 'target_name': 'installer_util', |
213 'type': 'static_library', | 214 'type': 'static_library', |
214 'dependencies': [ | 215 'dependencies': [ |
215 '<(DEPTH)/base/base.gyp:base', | 216 '<(DEPTH)/base/base.gyp:base', |
216 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 217 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
217 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 218 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
218 ], | 219 ], |
219 'sources': [ | 220 'sources': [ |
| 221 # Note: sources list duplicated in GN build. |
220 'installer/util/google_update_experiment_util.cc', | 222 'installer/util/google_update_experiment_util.cc', |
221 'installer/util/google_update_experiment_util.h', | 223 'installer/util/google_update_experiment_util.h', |
222 'installer/util/master_preferences.cc', | 224 'installer/util/master_preferences.cc', |
223 'installer/util/master_preferences.h', | 225 'installer/util/master_preferences.h', |
224 'installer/util/master_preferences_constants.cc', | 226 'installer/util/master_preferences_constants.cc', |
225 'installer/util/master_preferences_constants.h', | 227 'installer/util/master_preferences_constants.h', |
226 ], | 228 ], |
227 'include_dirs': [ | 229 'include_dirs': [ |
228 '<(DEPTH)', | 230 '<(DEPTH)', |
229 ], | 231 ], |
230 } | 232 } |
231 ], | 233 ], |
232 }], | 234 }], |
233 | 235 |
234 ], | 236 ], |
235 } | 237 } |
OLD | NEW |