| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'chrome', | 8 'target_name': 'chrome', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
| (...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 }], | 590 }], |
| 591 ['OS=="win" and component=="shared_library"', { | 591 ['OS=="win" and component=="shared_library"', { |
| 592 'defines': ['COMPILE_CONTENT_STATICALLY'], | 592 'defines': ['COMPILE_CONTENT_STATICALLY'], |
| 593 }], | 593 }], |
| 594 ['OS=="win"', { | 594 ['OS=="win"', { |
| 595 'dependencies': [ | 595 'dependencies': [ |
| 596 '../win8/metro_driver/metro_driver.gyp:metro_driver', | 596 '../win8/metro_driver/metro_driver.gyp:metro_driver', |
| 597 '../win8/delegate_execute/delegate_execute.gyp:*', | 597 '../win8/delegate_execute/delegate_execute.gyp:*', |
| 598 ], | 598 ], |
| 599 }], | 599 }], |
| 600 ['chromeos==1', { | |
| 601 'ldflags!': [ | |
| 602 # http://crbug.com/353127 | |
| 603 '-Wl,--fatal-warnings', | |
| 604 ], | |
| 605 }], | |
| 606 ], | 600 ], |
| 607 }, | 601 }, |
| 608 ], | 602 ], |
| 609 'conditions': [ | 603 'conditions': [ |
| 610 ['OS=="win"', { | 604 ['OS=="win"', { |
| 611 'targets': [ | 605 'targets': [ |
| 612 { | 606 { |
| 613 'target_name': 'image_pre_reader', | 607 'target_name': 'image_pre_reader', |
| 614 'type': 'static_library', | 608 'type': 'static_library', |
| 615 'sources': [ | 609 'sources': [ |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 'dependencies': [ | 701 'dependencies': [ |
| 708 'chrome_nacl_win64', | 702 'chrome_nacl_win64', |
| 709 ], | 703 ], |
| 710 }], | 704 }], |
| 711 ], | 705 ], |
| 712 }, | 706 }, |
| 713 ], | 707 ], |
| 714 }], | 708 }], |
| 715 ], | 709 ], |
| 716 } | 710 } |
| OLD | NEW |