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 # GN version: //chrome | 8 # GN version: //chrome |
9 'target_name': 'chrome', | 9 'target_name': 'chrome', |
10 'type': 'none', | 10 'type': 'none', |
(...skipping 28 matching lines...) Expand all Loading... |
39 'message': 'Reordering Imports', | 39 'message': 'Reordering Imports', |
40 }, | 40 }, |
41 ], | 41 ], |
42 }], | 42 }], |
43 ], | 43 ], |
44 }, | 44 }, |
45 { | 45 { |
46 # GN version: //chrome:chrome_initial | 46 # GN version: //chrome:chrome_initial |
47 'target_name': 'chrome_initial', | 47 'target_name': 'chrome_initial', |
48 'type': 'executable', | 48 'type': 'executable', |
49 'dependencies' : [ '../chrome/common_constants.gyp:version_header', ], | 49 'dependencies' : [ |
| 50 '../chrome/common_constants.gyp:version_header', |
| 51 'chrome_common_features', |
| 52 ], |
50 # Name the exe chrome.exe, not chrome_initial.exe. | 53 # Name the exe chrome.exe, not chrome_initial.exe. |
51 'product_name': 'chrome', | 54 'product_name': 'chrome', |
52 'mac_bundle': 1, | 55 'mac_bundle': 1, |
53 'variables': { | 56 'variables': { |
54 'use_system_xdg_utils%': 0, | 57 'use_system_xdg_utils%': 0, |
55 'enable_wexit_time_destructors': 1, | 58 'enable_wexit_time_destructors': 1, |
56 }, | 59 }, |
57 'sources': [ | 60 'sources': [ |
58 # Note that due to InitializeSandboxInfo, this must be directly linked | 61 # Note that due to InitializeSandboxInfo, this must be directly linked |
59 # into chrome.exe, not into a dependent. | 62 # into chrome.exe, not into a dependent. |
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 'dependencies': [ | 622 'dependencies': [ |
620 'chrome_nacl_win64', | 623 'chrome_nacl_win64', |
621 ], | 624 ], |
622 }], | 625 }], |
623 ], | 626 ], |
624 }, | 627 }, |
625 ], | 628 ], |
626 }], | 629 }], |
627 ], | 630 ], |
628 } | 631 } |
OLD | NEW |