Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: chrome/chrome_exe.gypi

Issue 137643003: Temporary fix for telemetry builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Python cleanup Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« build/win/reorder-imports.py ('K') | « build/win/reorder-imports.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« build/win/reorder-imports.py ('K') | « build/win/reorder-imports.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698