| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'util/master_preferences_dummy.cc', | 121 'util/master_preferences_dummy.cc', |
| 122 ], | 122 ], |
| 123 'configurations': { | 123 'configurations': { |
| 124 'Common_Base': { | 124 'Common_Base': { |
| 125 'msvs_target_platform': 'x64', | 125 'msvs_target_platform': 'x64', |
| 126 }, | 126 }, |
| 127 }, | 127 }, |
| 128 }, | 128 }, |
| 129 ], | 129 ], |
| 130 }], | 130 }], |
| 131 ['OS=="linux"', { | 131 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 132 'targets': [ | 132 'targets': [ |
| 133 { | 133 { |
| 134 'target_name': 'installer_util', | 134 'target_name': 'installer_util', |
| 135 'type': '<(library)', | 135 'type': '<(library)', |
| 136 'dependencies': [ | 136 'dependencies': [ |
| 137 '../chrome.gyp:common_constants', | 137 '../chrome.gyp:common_constants', |
| 138 '../chrome.gyp:chrome_resources', | 138 '../chrome.gyp:chrome_resources', |
| 139 '../chrome.gyp:chrome_strings', | 139 '../chrome.gyp:chrome_strings', |
| 140 ], | 140 ], |
| 141 'sources': [ | 141 'sources': [ |
| 142 'util/master_preferences.cc', | 142 'util/master_preferences.cc', |
| 143 'util/master_preferences.h', | 143 'util/master_preferences.h', |
| 144 'util/master_preferences_constants.cc', | 144 'util/master_preferences_constants.cc', |
| 145 'util/master_preferences_constants.h', | 145 'util/master_preferences_constants.h', |
| 146 ], | 146 ], |
| 147 'include_dirs': [ | 147 'include_dirs': [ |
| 148 '<(DEPTH)', | 148 '<(DEPTH)', |
| 149 ], | 149 ], |
| 150 } | 150 } |
| 151 ], | 151 ], |
| 152 }], | 152 }], |
| 153 ], | 153 ], |
| 154 } | 154 } |
| 155 | 155 |
| 156 # Local Variables: | 156 # Local Variables: |
| 157 # tab-width:2 | 157 # tab-width:2 |
| 158 # indent-tabs-mode:nil | 158 # indent-tabs-mode:nil |
| 159 # End: | 159 # End: |
| 160 # vim: set expandtab tabstop=2 shiftwidth=2: | 160 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |