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

Side by Side Diff: build/android/gn/generate_isolate.py

Issue 2204823002: [Android] Move isolate generation into //build/config/android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | build/config/android/internal_rules.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Creates an .isolate given a list of files. 6 """Creates an .isolate given a list of files.
7 7
8 """ 8 """
9 9
10 import argparse 10 import argparse
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 if options.out_file: 107 if options.out_file:
108 with open(options.out_file, 'w') as f: 108 with open(options.out_file, 'w') as f:
109 f.write(isolate_data + '\n') 109 f.write(isolate_data + '\n')
110 else: 110 else:
111 print isolate_data 111 print isolate_data
112 112
113 113
114 if __name__ == '__main__': 114 if __name__ == '__main__':
115 sys.exit(main()) 115 sys.exit(main())
116 116
OLDNEW
« no previous file with comments | « no previous file | build/config/android/internal_rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698