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 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
690 'chrome.isolate', | 690 'chrome.isolate', |
691 ], | 691 ], |
692 'conditions': [ | 692 'conditions': [ |
693 ['OS=="win"', { | 693 ['OS=="win"', { |
694 'dependencies': [ | 694 'dependencies': [ |
695 'chrome_nacl_win64', | 695 'chrome_nacl_win64', |
696 ], | 696 ], |
697 }], | 697 }], |
698 ], | 698 ], |
699 }, | 699 }, |
| 700 ]}, { |
| 701 # Used by bots so they can always depend on chrome_run target. |
| 702 'targets': [ |
| 703 { |
| 704 'target_name': 'chrome_run', |
| 705 'type': 'none', |
| 706 'dependencies': [ |
| 707 'chrome', |
| 708 ], |
| 709 }, |
700 ], | 710 ], |
701 }], | 711 }], |
702 ], | 712 ], |
703 } | 713 } |
OLD | NEW |