| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 'include_dirs': [ | 100 'include_dirs': [ |
| 101 '<(DEPTH)', | 101 '<(DEPTH)', |
| 102 ], | 102 ], |
| 103 }], | 103 }], |
| 104 ], | 104 ], |
| 105 }, | 105 }, |
| 106 'conditions': [ | 106 'conditions': [ |
| 107 ['OS=="win"', { | 107 ['OS=="win"', { |
| 108 'targets': [ | 108 'targets': [ |
| 109 { | 109 { |
| 110 # GN version: //chrome/installer/util |
| 110 'target_name': 'installer_util', | 111 'target_name': 'installer_util', |
| 111 'type': 'static_library', | 112 'type': 'static_library', |
| 112 'variables': { | 113 'variables': { |
| 113 'installer_util_target': 1, | 114 'installer_util_target': 1, |
| 114 }, | 115 }, |
| 115 'dependencies': [ | 116 'dependencies': [ |
| 116 'installer_util_strings', | 117 'installer_util_strings', |
| 117 '<(DEPTH)/base/base.gyp:base', | 118 '<(DEPTH)/base/base.gyp:base', |
| 118 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.g
yp:dynamic_annotations', | 119 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.g
yp:dynamic_annotations', |
| 119 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 120 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 ], | 223 ], |
| 223 'include_dirs': [ | 224 'include_dirs': [ |
| 224 '<(DEPTH)', | 225 '<(DEPTH)', |
| 225 ], | 226 ], |
| 226 } | 227 } |
| 227 ], | 228 ], |
| 228 }], | 229 }], |
| 229 | 230 |
| 230 ], | 231 ], |
| 231 } | 232 } |
| OLD | NEW |