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

Side by Side Diff: build/android/gyp/write_ordered_libraries.py

Issue 1135473002: Remove spurious print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # 2 #
3 # Copyright 2013 The Chromium Authors. All rights reserved. 3 # Copyright 2013 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 """Writes dependency ordered list of native libraries. 7 """Writes dependency ordered list of native libraries.
8 8
9 The list excludes any Android system libraries, as those are not bundled with 9 The list excludes any Android system libraries, as those are not bundled with
10 the APK. 10 the APK.
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 build_utils.WriteJson( 122 build_utils.WriteJson(
123 {'libraries': libraries, 'java_libraries_list': java_libraries_list}, 123 {'libraries': libraries, 'java_libraries_list': java_libraries_list},
124 options.output, 124 options.output,
125 only_if_changed=True) 125 only_if_changed=True)
126 126
127 if options.stamp: 127 if options.stamp:
128 build_utils.Touch(options.stamp) 128 build_utils.Touch(options.stamp)
129 129
130 if options.depfile: 130 if options.depfile:
131 print libraries
132 build_utils.WriteDepfile( 131 build_utils.WriteDepfile(
133 options.depfile, 132 options.depfile,
134 libraries + build_utils.GetPythonDependencies()) 133 libraries + build_utils.GetPythonDependencies())
135 134
136 135
137 if __name__ == '__main__': 136 if __name__ == '__main__':
138 sys.exit(main()) 137 sys.exit(main())
139 138
140 139
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698