Chromium Code Reviews| Index: build/android/gyp/create_java_binary_script.py |
| diff --git a/build/android/gyp/create_java_binary_script.py b/build/android/gyp/create_java_binary_script.py |
| index d632728ac7a79662e193904b096f58fe163d0bcc..5de43f2d4a45d7f8b2b73394803926a5b5edd0cc 100755 |
| --- a/build/android/gyp/create_java_binary_script.py |
| +++ b/build/android/gyp/create_java_binary_script.py |
| @@ -36,6 +36,7 @@ if os.getcwd() != self_dir: |
| java_args = [ |
| "java", |
| "-classpath", ":".join(classpath), |
| + "-enableassertions", |
|
cjhopman
2015/06/17 21:50:15
So this enables assertions for all java binaries.
Bernhard Bauer
2015/06/18 16:37:25
Hm, I don't really see an advantage in having asse
cjhopman
2015/06/19 22:39:07
Well, this isn't just for tests. I'd agree that fo
|
| \"{main_class}\"] + sys.argv[1:] |
| os.execvp("java", java_args) |
| """ |