Fixed
Status Update
Comments
ag...@google.com <ag...@google.com>
mh...@google.com <mh...@google.com> #2
We’ve shared this with our product and engineering team and will continue to provide updates as more information becomes available.
ho...@chromium.org <ho...@chromium.org> #3
Thank you, Google! Check out my other issues as well! :P
mh...@google.com <mh...@google.com> #4
Hey guys,
for some reason you've changed the status of this
https://issuetracker.google.com/issues/210474563
issue to "Duplicate". But that issue is unrelated to this thread's issue 😅
for some reason you've changed the status of this
issue to "Duplicate". But that issue is unrelated to this thread's issue 😅
Description
I tried to compile Chromium on my local Ubuntu system using the following args parameters (parameters from android-x64-rel tryjobs) and commands, but I found that I encountered many lint warnings (or errors) that broke my local build.
I then tried to add
treat_warnings_as_errors = false
in the args parameter, but soon after, the build was broken again when executingbuild/android/test/incremental_javac_gn/incremental_javac_test_android_library.py
, and prompted similar warnings (or errors) as before, so I settreat_warnings_as_errors = true
inincremental_javac_test_android_library.py
to false again to try to get the build to continue.But unfortunately, the build was broken again when executing
build/android/gyp/nocompile_test.py
for similar reasons, and I had to addtreat_warnings_as_errors = false
again. Soon after adding this parameter, the compilation was broken again.After this, I tried to simplify the args parameter as follows, and found that I still encountered lint warnings (or errors).
I had to add
treat_warnings_as_errors=false
again, and tried adding-Xlint:deprecation
incompile_java.py
to observe the warning (error) messages. Because the messages is too long, I post part of it below.The above problems bothered me a lot, and I found that the official tryjobs did not seem to encounter these problems.
How can I fix my local android build? I'd appreciate any help!