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 12 matching lines...) Expand all Loading... |
23 ], | 23 ], |
24 'outputs': [ | 24 'outputs': [ |
25 '<(PRODUCT_DIR)\\chrome.exe', | 25 '<(PRODUCT_DIR)\\chrome.exe', |
26 '<(PRODUCT_DIR)\\chrome.exe.pdb', | 26 '<(PRODUCT_DIR)\\chrome.exe.pdb', |
27 ], | 27 ], |
28 'action': [ | 28 'action': [ |
29 'python', | 29 'python', |
30 '<(reorder_py_path)', | 30 '<(reorder_py_path)', |
31 '-i', '<(exe_input_path)', | 31 '-i', '<(exe_input_path)', |
32 '-o', '<(exe_output_path)', | 32 '-o', '<(exe_output_path)', |
| 33 '-a', '<(target_arch)', |
33 ], | 34 ], |
34 'message': 'Reordering Imports', | 35 'message': 'Reordering Imports', |
35 }, | 36 }, |
36 ], | 37 ], |
37 }], | 38 }], |
38 ], | 39 ], |
39 }, | 40 }, |
40 { | 41 { |
41 'target_name': 'chrome_initial', | 42 'target_name': 'chrome_initial', |
42 'type': 'executable', | 43 'type': 'executable', |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 'dependencies': [ | 690 'dependencies': [ |
690 'chrome_nacl_win64', | 691 'chrome_nacl_win64', |
691 ], | 692 ], |
692 }], | 693 }], |
693 ], | 694 ], |
694 }, | 695 }, |
695 ], | 696 ], |
696 }], | 697 }], |
697 ], | 698 ], |
698 } | 699 } |
OLD | NEW |