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 'target_name': 'chrome', | 9 'target_name': 'chrome', |
9 'type': 'none', | 10 'type': 'none', |
10 'dependencies': [ 'chrome_initial', ], | 11 'dependencies': [ 'chrome_initial', ], |
11 'conditions': [ | 12 'conditions': [ |
12 ['OS == "win"', { | 13 ['OS == "win"', { |
13 'actions': [ | 14 'actions': [ |
14 { | 15 { |
15 'variables': { | 16 'variables': { |
16 'reorder_py_path': '<(DEPTH)/build/win/reorder-imports.py', | 17 'reorder_py_path': '<(DEPTH)/build/win/reorder-imports.py', |
17 # See comment in chrome_dll.gypi in the hardlink_to_output | 18 # See comment in chrome_dll.gypi in the hardlink_to_output |
(...skipping 17 matching lines...) Expand all Loading... |
35 '-o', '<(exe_output_path)', | 36 '-o', '<(exe_output_path)', |
36 '-a', '<(target_arch)', | 37 '-a', '<(target_arch)', |
37 ], | 38 ], |
38 'message': 'Reordering Imports', | 39 'message': 'Reordering Imports', |
39 }, | 40 }, |
40 ], | 41 ], |
41 }], | 42 }], |
42 ], | 43 ], |
43 }, | 44 }, |
44 { | 45 { |
45 # GN version: //chrome | 46 # GN version: //chrome:chrome_initial |
46 'target_name': 'chrome_initial', | 47 'target_name': 'chrome_initial', |
47 'type': 'executable', | 48 'type': 'executable', |
48 # Name the exe chrome.exe, not chrome_initial.exe. | 49 # Name the exe chrome.exe, not chrome_initial.exe. |
49 'product_name': 'chrome', | 50 'product_name': 'chrome', |
50 'mac_bundle': 1, | 51 'mac_bundle': 1, |
51 'variables': { | 52 'variables': { |
52 'use_system_xdg_utils%': 0, | 53 'use_system_xdg_utils%': 0, |
53 'enable_wexit_time_destructors': 1, | 54 'enable_wexit_time_destructors': 1, |
54 }, | 55 }, |
55 'sources': [ | 56 'sources': [ |
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 'dependencies': [ | 617 'dependencies': [ |
617 'chrome_nacl_win64', | 618 'chrome_nacl_win64', |
618 ], | 619 ], |
619 }], | 620 }], |
620 ], | 621 ], |
621 }, | 622 }, |
622 ], | 623 ], |
623 }], | 624 }], |
624 ], | 625 ], |
625 } | 626 } |
OLD | NEW |