| Index: build/android/gyp/jar_toc.py
|
| diff --git a/build/android/gyp/jar_toc.py b/build/android/gyp/jar_toc.py
|
| index 9db9d2665b5261e5b237e8146a42631eed50f04d..54e90bcf28729aa740bb48ef4501ba809ff897bd 100755
|
| --- a/build/android/gyp/jar_toc.py
|
| +++ b/build/android/gyp/jar_toc.py
|
| @@ -38,8 +38,7 @@ def GetClassesInZipFile(zip_file):
|
| def CallJavap(classpath, classes):
|
| javap_cmd = [
|
| 'javap',
|
| - '-public',
|
| - '-protected',
|
| + '-protected', # In reality both public & protected.
|
| # -verbose is required to get constant values (which can be inlined in
|
| # dependents).
|
| '-verbose',
|
| @@ -109,4 +108,3 @@ def main(argv):
|
|
|
| if __name__ == '__main__':
|
| sys.exit(main(sys.argv))
|
| -
|
|
|