| 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 }, | 301 }, |
| 302 ], | 302 ], |
| 303 'conditions': [ | 303 'conditions': [ |
| 304 ['mac_breakpad_compiled_in==1', { | 304 ['mac_breakpad_compiled_in==1', { |
| 305 'dependencies': [ | 305 'dependencies': [ |
| 306 '../breakpad/breakpad.gyp:breakpad', | 306 '../breakpad/breakpad.gyp:breakpad', |
| 307 '../components/components.gyp:crash_component', | 307 '../components/components.gyp:crash_component', |
| 308 '../components/components.gyp:policy', | 308 '../components/components.gyp:policy', |
| 309 ], | 309 ], |
| 310 'sources': [ | 310 'sources': [ |
| 311 'app/chrome_breakpad_client.cc', | 311 'app/chrome_crash_reporter_client.cc', |
| 312 'app/chrome_breakpad_client.h', | 312 'app/chrome_crash_reporter_client.h', |
| 313 'app/chrome_breakpad_client_mac.mm', | 313 'app/chrome_crash_reporter_client_mac.mm', |
| 314 ], | 314 ], |
| 315 }, { # else: mac_breakpad_compiled_in!=1 | 315 }, { # else: mac_breakpad_compiled_in!=1 |
| 316 # No Breakpad, put in the stubs. | 316 # No Breakpad, put in the stubs. |
| 317 'dependencies': [ | 317 'dependencies': [ |
| 318 '../components/components.gyp:breakpad_stubs', | 318 '../components/components.gyp:breakpad_stubs', |
| 319 ], | 319 ], |
| 320 }], # mac_breakpad_compiled_in | 320 }], # mac_breakpad_compiled_in |
| 321 ], # conditions | 321 ], # conditions |
| 322 }], # OS=="mac" | 322 }], # OS=="mac" |
| 323 ], # conditions | 323 ], # conditions |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 }, | 371 }, |
| 372 }], | 372 }], |
| 373 ] | 373 ] |
| 374 }], | 374 }], |
| 375 ], | 375 ], |
| 376 }, # target chrome_child_dll | 376 }, # target chrome_child_dll |
| 377 ], | 377 ], |
| 378 }], | 378 }], |
| 379 ], | 379 ], |
| 380 } | 380 } |
| OLD | NEW |