Loading tools/soong_to_convert.py +2 −5 Original line number Diff line number Diff line #!/usr/bin/env python #!/usr/bin/env python3 # # Copyright (C) 2016 The Android Open Source Project # Loading Loading @@ -50,9 +50,6 @@ that Make can detect are listed in parenthesis after the module: Not all problems can be discovered, but this is a starting point. """ from __future__ import print_function import csv import sys Loading Loading @@ -113,7 +110,7 @@ def display(results): def main(filename): """Read the CSV file, print the results""" with open(filename, 'rb') as csvfile: with open(filename, 'r') as csvfile: results = process(csv.reader(csvfile)) native_results = filter(results, "native") Loading Loading
tools/soong_to_convert.py +2 −5 Original line number Diff line number Diff line #!/usr/bin/env python #!/usr/bin/env python3 # # Copyright (C) 2016 The Android Open Source Project # Loading Loading @@ -50,9 +50,6 @@ that Make can detect are listed in parenthesis after the module: Not all problems can be discovered, but this is a starting point. """ from __future__ import print_function import csv import sys Loading Loading @@ -113,7 +110,7 @@ def display(results): def main(filename): """Read the CSV file, print the results""" with open(filename, 'rb') as csvfile: with open(filename, 'r') as csvfile: results = process(csv.reader(csvfile)) native_results = filter(results, "native") Loading