| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../build/util/version.gypi', | 9 '../build/util/version.gypi', |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 '..', | 158 '..', |
| 159 '<(SHARED_INTERMEDIATE_DIR)', | 159 '<(SHARED_INTERMEDIATE_DIR)', |
| 160 ], | 160 ], |
| 161 'sources': [ | 161 'sources': [ |
| 162 'breakpad.cc', | 162 'breakpad.cc', |
| 163 'breakpad.h', | 163 'breakpad.h', |
| 164 ], | 164 ], |
| 165 'dependencies': [ | 165 'dependencies': [ |
| 166 'chrome_elf_common', | 166 'chrome_elf_common', |
| 167 '../breakpad/breakpad.gyp:breakpad_handler', | 167 '../breakpad/breakpad.gyp:breakpad_handler', |
| 168 '../chrome/common_constants.gyp:version_header', | 168 '../chrome/chrome.gyp:chrome_version_header', |
| 169 ], | 169 ], |
| 170 }, | 170 }, |
| 171 ], # targets | 171 ], # targets |
| 172 'conditions': [ | 172 'conditions': [ |
| 173 ['component=="shared_library"', { | 173 ['component=="shared_library"', { |
| 174 'targets': [ | 174 'targets': [ |
| 175 { | 175 { |
| 176 'target_name': 'chrome_redirects', | 176 'target_name': 'chrome_redirects', |
| 177 'type': 'shared_library', | 177 'type': 'shared_library', |
| 178 'include_dirs': [ | 178 'include_dirs': [ |
| (...skipping 16 matching lines...) Expand all Loading... |
| 195 ], | 195 ], |
| 196 # Set /SUBSYSTEM:WINDOWS. | 196 # Set /SUBSYSTEM:WINDOWS. |
| 197 'SubSystem': '2', | 197 'SubSystem': '2', |
| 198 }, | 198 }, |
| 199 }, | 199 }, |
| 200 }, | 200 }, |
| 201 ], | 201 ], |
| 202 }], | 202 }], |
| 203 ], | 203 ], |
| 204 } | 204 } |
| 205 |
| OLD | NEW |