| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 'installer/util/self_cleaning_temp_dir.h', | 156 'installer/util/self_cleaning_temp_dir.h', |
| 157 'installer/util/shell_util.cc', | 157 'installer/util/shell_util.cc', |
| 158 'installer/util/shell_util.h', | 158 'installer/util/shell_util.h', |
| 159 'installer/util/uninstall_metrics.cc', | 159 'installer/util/uninstall_metrics.cc', |
| 160 'installer/util/uninstall_metrics.h', | 160 'installer/util/uninstall_metrics.h', |
| 161 'installer/util/user_experiment.cc', | 161 'installer/util/user_experiment.cc', |
| 162 'installer/util/user_experiment.h', | 162 'installer/util/user_experiment.h', |
| 163 ], | 163 ], |
| 164 'conditions': [ | 164 'conditions': [ |
| 165 ['component=="shared_library"', { | 165 ['component=="shared_library"', { |
| 166 'sources': [ '../content/public/common/content_switches.cc' ], | 166 'sources': [ |
| 167 '../content/public/common/content_switches.cc', |
| 168 '../content/public/common/content_switches_util.cc' |
| 169 ], |
| 167 'defines': [ 'COMPILE_CONTENT_STATICALLY'], | 170 'defines': [ 'COMPILE_CONTENT_STATICALLY'], |
| 168 }, { | 171 }, { |
| 169 'dependencies': ['<(DEPTH)/content/content.gyp:content_common'], | 172 'dependencies': ['<(DEPTH)/content/content.gyp:content_common'], |
| 170 }], | 173 }], |
| 171 ], | 174 ], |
| 172 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 175 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 173 'msvs_disabled_warnings': [ 4267, ], | 176 'msvs_disabled_warnings': [ 4267, ], |
| 174 }, | 177 }, |
| 175 ], | 178 ], |
| 176 }], | 179 }], |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 'installer/util/master_preferences.cc', | 221 'installer/util/master_preferences.cc', |
| 219 'installer/util/master_preferences.h', | 222 'installer/util/master_preferences.h', |
| 220 'installer/util/master_preferences_constants.cc', | 223 'installer/util/master_preferences_constants.cc', |
| 221 'installer/util/master_preferences_constants.h', | 224 'installer/util/master_preferences_constants.h', |
| 222 ], | 225 ], |
| 223 'include_dirs': [ | 226 'include_dirs': [ |
| 224 '<(DEPTH)', | 227 '<(DEPTH)', |
| 225 ], | 228 ], |
| 226 'conditions': [ | 229 'conditions': [ |
| 227 ['component == "shared_library"', { | 230 ['component == "shared_library"', { |
| 228 'sources': [ '../content/public/common/content_switches.cc' ], | 231 'sources': [ |
| 232 '../content/public/common/content_switches.cc', |
| 233 '../content/public/common/content_switches_util.cc' |
| 234 ], |
| 229 'defines': [ 'COMPILE_CONTENT_STATICALLY'], | 235 'defines': [ 'COMPILE_CONTENT_STATICALLY'], |
| 230 }], | 236 }], |
| 231 ], | 237 ], |
| 232 } | 238 } |
| 233 ], | 239 ], |
| 234 }], | 240 }], |
| 235 | 241 |
| 236 ], | 242 ], |
| 237 } | 243 } |
| OLD | NEW |