| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'installer/util/master_preferences_constants.h', | 144 'installer/util/master_preferences_constants.h', |
| 145 'installer/util/version.cc', | 145 'installer/util/version.cc', |
| 146 'installer/util/version.h', | 146 'installer/util/version.h', |
| 147 ], | 147 ], |
| 148 'include_dirs': [ | 148 'include_dirs': [ |
| 149 '<(DEPTH)', | 149 '<(DEPTH)', |
| 150 ], | 150 ], |
| 151 } | 151 } |
| 152 ], | 152 ], |
| 153 }], | 153 }], |
| 154 ['OS=="mac"', { |
| 155 'targets': [ |
| 156 { |
| 157 'target_name': 'installer_util', |
| 158 'type': '<(library)', |
| 159 'dependencies': [ |
| 160 '../base/base.gyp:base', |
| 161 ], |
| 162 'sources': [ |
| 163 'installer/util/version.cc', |
| 164 'installer/util/version.h', |
| 165 ], |
| 166 } |
| 167 ], |
| 168 }], |
| 154 ], | 169 ], |
| 155 } | 170 } |
| 156 | 171 |
| 157 # Local Variables: | 172 # Local Variables: |
| 158 # tab-width:2 | 173 # tab-width:2 |
| 159 # indent-tabs-mode:nil | 174 # indent-tabs-mode:nil |
| 160 # End: | 175 # End: |
| 161 # vim: set expandtab tabstop=2 shiftwidth=2: | 176 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |