| 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 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 }], | 667 }], |
| 668 ], | 668 ], |
| 669 }], | 669 }], |
| 670 ['test_isolation_mode != "noop"', { | 670 ['test_isolation_mode != "noop"', { |
| 671 'targets': [ | 671 'targets': [ |
| 672 { | 672 { |
| 673 'target_name': 'chrome_run', | 673 'target_name': 'chrome_run', |
| 674 'type': 'none', | 674 'type': 'none', |
| 675 'dependencies': [ | 675 'dependencies': [ |
| 676 'chrome', | 676 'chrome', |
| 677 # Runtime dependencies |
| 678 '../third_party/mesa/mesa.gyp:osmesa', |
| 677 ], | 679 ], |
| 678 'includes': [ | 680 'includes': [ |
| 679 '../build/isolate.gypi', | 681 '../build/isolate.gypi', |
| 680 ], | 682 ], |
| 681 'sources': [ | 683 'sources': [ |
| 682 'chrome.isolate', | 684 'chrome.isolate', |
| 683 ], | 685 ], |
| 684 'conditions': [ | 686 'conditions': [ |
| 685 ['OS=="win"', { | 687 ['OS=="win"', { |
| 686 'dependencies': [ | 688 'dependencies': [ |
| 687 'chrome_nacl_win64', | 689 'chrome_nacl_win64', |
| 688 ], | 690 ], |
| 689 }], | 691 }], |
| 690 ], | 692 ], |
| 691 }, | 693 }, |
| 692 ], | 694 ], |
| 693 }], | 695 }], |
| 694 ], | 696 ], |
| 695 } | 697 } |
| OLD | NEW |