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

Side by Side Diff: build/get_byteorder.py

Issue 2815453004: For building v8 using gn on aix_ppc64, linux_s390x and linux_ppc64. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2014 The Chromium Authors. All rights reserved.
Michael Achenbach 2017/04/18 13:46:04 nit: 2017
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """Get Byteorder of host architecture"""
7
8
9 import sys
10
11 def main():
12 print sys.byteorder
13 return 0
14
15 if __name__ == '__main__':
16 sys.exit(main())
Michael Achenbach 2017/04/18 13:46:04 nit: Wonder if the boiler plate is necessary. Mayb
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698