Fixed
Status Update
Comments
jb...@chromium.org <jb...@chromium.org> #2
Err, I have no idea how gerrit changesets are reflected in the bug report, but there is a preliminary patch https://android-review.googlesource.com/#/c/159020/
bu...@chromium.org <bu...@chromium.org> #3
Scope of changes to bionic are somewhat more complex than initially thought.
The troublesome spots are mmap() and friends, malloc() and friends (due to symbol clash between struct, fieldname, and function names) as well as most of the routines in string.h
string.h exposes some issues, because the routines in it are both defined as inline functions that call out to assembly counterpart of the same name using an inconsistent __builtin_XXXX() convention. Sometimes the routines are available as _builtin___XXXX_chk and sometimes as __builtin_xxx.
I initially thought about limiting the macro magic purely for bionic/arm64, but there does not seem to be a nice way to do this.
Does this mean I need to touch all the .S files that are associated with string.h?
Even for the ones that are NOT for arm64?
Please take a look at:
https://code.google.com/p/android/issues/detail?id=180578
The troublesome spots are mmap() and friends, malloc() and friends (due to symbol clash between struct, fieldname, and function names) as well as most of the routines in string.h
string.h exposes some issues, because the routines in it are both defined as inline functions that call out to assembly counterpart of the same name using an inconsistent __builtin_XXXX() convention. Sometimes the routines are available as _builtin___XXXX_chk and sometimes as __builtin_xxx.
I initially thought about limiting the macro magic purely for bionic/arm64, but there does not seem to be a nice way to do this.
Does this mean I need to touch all the .S files that are associated with string.h?
Even for the ones that are NOT for arm64?
Please take a look at:
ma...@chromium.org <ma...@chromium.org> #4
Could you please reiterate why is it not possible to fix this in TSan? If the problem is some call happening before __tsan_init, we just need to call __tsan_init right there. Most (if not all) interceptors have this logic.
Does it still happen if __tsan_init is called from .preinit_array?
Does it still happen if __tsan_init is called from .preinit_array?
bu...@chromium.org <bu...@chromium.org> #5
Its troublesome before __tsan_init because we lack __thread keyword support in bionic. I had to hack in a workaround in TSAN that does not use intercepted calls. (more on this below)
The majority of the problem actually occurs after __tsan_init has been called.
For example, pthread_create() calls a bunch of routines for the *new thread*, before it has had a chance to initialize its ThreadState. All of these routines running on the new thread are intercepted by tsan, and crashes because ThreadState has not been initialized yet.
A purely tsan-only fix is to "globally ignore" interceptors during troublesome times. This works fine for two threads, but doesn't scale to multiple threads - now you can miss events because they are being ignored.
I also tried putting in "global partial ignores" (i.e. ignore interceptors only on the new thread), but that got really hairy as well.
The fundamental problem is that TSAN is intercepting calls that it has no business intercepting.
For example, the same thing happens during thread join time, when one thread is being deconstructed.
Similar things happen during process exit time where ALL threads are being deconstructed.
Playing around with purely TSAN solution, all I managed to do was move around the actual place of the crash/hang/missed events.
The majority of the problem actually occurs after __tsan_init has been called.
For example, pthread_create() calls a bunch of routines for the *new thread*, before it has had a chance to initialize its ThreadState. All of these routines running on the new thread are intercepted by tsan, and crashes because ThreadState has not been initialized yet.
A purely tsan-only fix is to "globally ignore" interceptors during troublesome times. This works fine for two threads, but doesn't scale to multiple threads - now you can miss events because they are being ignored.
I also tried putting in "global partial ignores" (i.e. ignore interceptors only on the new thread), but that got really hairy as well.
The fundamental problem is that TSAN is intercepting calls that it has no business intercepting.
For example, the same thing happens during thread join time, when one thread is being deconstructed.
Similar things happen during process exit time where ALL threads are being deconstructed.
Playing around with purely TSAN solution, all I managed to do was move around the actual place of the crash/hang/missed events.
aw...@chromium.org <aw...@chromium.org> #6
On x86_64/linux, precisely zero calls are intercepted during pthread_create() on the new thread until it has finished initializing its ThreadState.
That does not happen on aarch64/bionic
That does not happen on aarch64/bionic
jb...@chromium.org <jb...@chromium.org> #7
Oh, the reason why I had to hack in a non-interceptible TLS workaround was that intercepted calls happen during pthread_key maintenance that occurs both during pthread_join time as well as at exit time.
What was happening when I was using pthread_get/setspecific() was that after a thread was destroyed, an intercepted call was GENERATING a NEW key for the dead thread. Hilarity ensued afterwards.
What was happening when I was using pthread_get/setspecific() was that after a thread was destroyed, an intercepted call was GENERATING a NEW key for the dead thread. Hilarity ensued afterwards.
jb...@chromium.org <jb...@chromium.org> #8
Back to the topic at hand,
does anyone have any ideas on how to limit the bionic headerfile changes purely for aarch64?
https://code.google.com/p/android/issues/detail?id=180578
I *think* it might be better to limit the new internal symbols to 64bit arm parts, but there does not seem to be a nice way to do this (yet).
While my build currently "works", I don't think it will build for other platforms (i.e. 32bit arm, mips etc...)
Thanks
does anyone have any ideas on how to limit the bionic headerfile changes purely for aarch64?
I *think* it might be better to limit the new internal symbols to 64bit arm parts, but there does not seem to be a nice way to do this (yet).
While my build currently "works", I don't think it will build for other platforms (i.e. 32bit arm, mips etc...)
Thanks
ml...@chromium.org <ml...@chromium.org> #9
It looks like __aarch64__ is defined for Clang builds. I am not sure about gcc, nor can I say that the bionic folks are going to be pleased with architecture-specific stuff polluting high-level headers.
bu...@chromium.org <bu...@chromium.org> #10
@11: i think he's confused and expecting __aarch64__ to be defined in code that's built 32-bit.
bu...@chromium.org <bu...@chromium.org> #11
No, not confused (at least I think)
So the crux of the matter is this.
I need to touch some .S files, which are necessarily architecture specific, to add in the private symbols we need to support TSAN.
I can either touch ALL .S files (arm, arch64, x86 ...), or just the ones that gets used while building a 64 bit device (even if they are 32bit libraries)
Now, is it OKAY for me to touch all the .S files?
If that is the case, thenhttps://code.google.com/p/android/issues/detail?id=180578 is moot.
OTOH, If you guys want me to scope my changes purely for 64bit arm devices, then
https://code.google.com/p/android/issues/detail?id=180578 DOES matter IF there are ever any cases where 64bit library/executable calls out to 32bit library
I hope this is clear
So the crux of the matter is this.
I need to touch some .S files, which are necessarily architecture specific, to add in the private symbols we need to support TSAN.
I can either touch ALL .S files (arm, arch64, x86 ...), or just the ones that gets used while building a 64 bit device (even if they are 32bit libraries)
Now, is it OKAY for me to touch all the .S files?
If that is the case, then
OTOH, If you guys want me to scope my changes purely for 64bit arm devices, then
I hope this is clear
bu...@chromium.org <bu...@chromium.org> #12
In other words,
if it is okay for me to touch all the variant memset.S and strlen.S files, then I do NOT need to have arch specific exceptions in the new .h files.
The downside is that its gonna be a bigger patch :-/
What do you guys think?
if it is okay for me to touch all the variant memset.S and strlen.S files, then I do NOT need to have arch specific exceptions in the new .h files.
The downside is that its gonna be a bigger patch :-/
What do you guys think?
aw...@chromium.org <aw...@chromium.org> #13
Hi everyone.
I upload a set of patches, all tagged with this bug.
I have no idea if your gerrit handles stacked patches well. (It didn't before)
If it does not, I can always upload a merged patch.
The rough order of patches are
1. new files + pthreads + mman.h
2. system calls (all the .S files and the gensyscalls.py)
3. string.h and friends
4. malloc.h and friends
5. ioctl/tcgetattr
Its not readily apparent what the order of the patches should be.
Here are the change-ids:
Support for Thread Sanitizer for Bionic
Change-Id: I724fb8d77059d3e01e1c4336d1aa2c0c550bbb80
Add new system call weak aliases, modified so that it is not arm64 specific
Change-Id: I0011bd344ba9ce977e429081a0cb84d8e59463fc
Touching all of string.h
Change-Id: I826f328a1849331dc39d5ff6847be02aff2ff1ba
Now touching malloc/free and friends
Change-Id: I5a2d07bfcf332556aeb0c3734b5ba122c80ee567
Now touching ioctl/tcgetattr
Change-Id: Ia709a5e7acf22239ad57aa22c06a867da6f6ef14
I upload a set of patches, all tagged with this bug.
I have no idea if your gerrit handles stacked patches well. (It didn't before)
If it does not, I can always upload a merged patch.
The rough order of patches are
1. new files + pthreads + mman.h
2. system calls (all the .S files and the gensyscalls.py)
3. string.h and friends
4. malloc.h and friends
5. ioctl/tcgetattr
Its not readily apparent what the order of the patches should be.
Here are the change-ids:
Support for Thread Sanitizer for Bionic
Change-Id: I724fb8d77059d3e01e1c4336d1aa2c0c550bbb80
Add new system call weak aliases, modified so that it is not arm64 specific
Change-Id: I0011bd344ba9ce977e429081a0cb84d8e59463fc
Touching all of string.h
Change-Id: I826f328a1849331dc39d5ff6847be02aff2ff1ba
Now touching malloc/free and friends
Change-Id: I5a2d07bfcf332556aeb0c3734b5ba122c80ee567
Now touching ioctl/tcgetattr
Change-Id: Ia709a5e7acf22239ad57aa22c06a867da6f6ef14
sg...@chromium.org <sg...@chromium.org> #14
Hi.
I just pushed up a new changeset that combines the 5 mentioned above.
https://android-review.googlesource.com/#/c/162104/
(Apparently gerrit still can't handle stacked changesets without manual intervention.
It marked the 5 prior patches as "unmergeable")
I just pushed up a new changeset that combines the 5 mentioned above.
(Apparently gerrit still can't handle stacked changesets without manual intervention.
It marked the 5 prior patches as "unmergeable")
sg...@chromium.org <sg...@chromium.org> #16
jb...@chromium.org <jb...@chromium.org> #17
Thank you for your feedback. We assure you that we are doing our best to address the issue reported, however our product team has shifted work priority that doesn't include this issue. For now, we will be closing the issue as won't fix obsolete. If this issue currently still exists, we request that you log a new issue along with latest bug report here https://goo.gl/TbMiIO .
aw...@chromium.org <aw...@chromium.org> #18
Earlier today a patch which calls new O APIs managed to break the Android build, despite passing on all the trybots:
https://chromium-review.googlesource.com/c/536974/
I don't know exactly what happened there, but I guess I should wait with other changes that call O APIs until this bug is completely resolved and you've given the green light John? I assume there will be a PSA to chromium/clank-team?
(Itching to take out the reflection I added for Channels - draft CL here:https://chromium-review.googlesource.com/c/568026/ ..this code isn't called on WebView so I'm assuming it's fine from that perspective).
I don't know exactly what happened there, but I guess I should wait with other changes that call O APIs until this bug is completely resolved and you've given the green light John? I assume there will be a PSA to chromium/clank-team?
(Itching to take out the reflection I added for Channels - draft CL here:
jb...@chromium.org <jb...@chromium.org> #19
I'm a bit surprised that that CL failed in proguarding on that bot, though it looks like it failed while proguarding monochrome_public_apk, so perhaps that's related to the frameworks jar that's lagging behind.
sg...@chromium.org <sg...@chromium.org> #20
Oh yes, that sounds like exactly what I was talking about. To give credit, Michael actually was the person describing it would fail in proguard to me.
pe...@chromium.org <pe...@chromium.org> #21
Do you know when the issue Anita (awdf@) described will be fixed? It affected my CL which I reverted, but would like to get relanded before BP.
sg...@chromium.org <sg...@chromium.org> #22
I am still waiting for an answer from Android. hoping I will get it today.
pe...@chromium.org <pe...@chromium.org> #23
Has there been any update on this?
sg...@chromium.org <sg...@chromium.org> #24
Unfortunately not. I will ping the thread with Android release folks to get an answer.
sg...@chromium.org <sg...@chromium.org> #25
update:discussions are still continuing. Almost there.
ag...@chromium.org <ag...@chromium.org> #26
[Empty comment from Monorail migration]
pa...@chromium.org <pa...@chromium.org> #27
I just rolled the SDK for WebView (https://crbug.com/749908#c6 ), so I guess this is fixed? (Unless it gets reverted in the next few hours.)
ct...@chromium.org <ct...@chromium.org> #29
While compiling system_webview_google_apk from scratch, I received a lot findbugs errors like this:
[47009/47053] ACTION //clank/android_webview/next:java__findbugs(//build/toolchain/android:android_clang_arm64)
I 0.003s Main [host]> java -classpath /usr/local/google/code/clankium/src/third_party/findbugs/lib/findbugs.jar: -Xmx768m '-Dfindbugs.home="/usr/local/google/code/clankium/src/third_party/findbugs"' -jar /usr/local/google/code/clankium/src/third_party/findbugs/lib/findbugs.jar -textui -sortByClass -pluginList /usr/local/google/code/clankium/src/tools/android/findbugs_plugin/lib/chromiumPlugin.jar -xml:withMessages -auxclasspath /usr/local/google/code/clankium/src/third_party/android_tools/sdk/platforms/android-23/android.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/glue/glue.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/clank/java/content_next_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/android_webview_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/android_webview_commandline_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/android_webview_platform_services_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/base/base_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/components/autofill/android/autofill_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/components/autofill/android/provider_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/content/public/android/content_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/net/android/net_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/ui/android/ui_full_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/ui/android/ui_utils_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/build/android/buildhooks/build_hooks_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/build/android/buildhooks/build_hooks_android_java.jar -exclude /usr/local/google/code/clankium/src/build/android/findbugs_filter/findbugs_exclude.xml -output gen/clank/android_webview/next/java__findbugs/result.xml /usr/local/google/code/clankium/src/out/Debug/lib.java/clank/android_webview/next/java.jar
D 6.033s Main The following errors occurred during analysis:
D 6.033s Main File not found: filesystem:/usr/local/google/code/clankium/src/third_party/android_tools/sdk/platforms/android-23/android.jar
D 6.033s Main The following classes needed for analysis were missing:
D 6.033s Main android.view.autofill.AutofillManager$AutofillCallback
D 6.033s Main android.webkit.RenderProcessGoneDetail
D 6.034s Main android.webkit.WebViewFactoryProvider
D 6.034s Main android.webkit.WebViewProvider
D 6.034s Main android.webkit.WebViewProvider$ScrollDelegate
D 6.034s Main android.webkit.WebViewProvider$ViewDelegate
D 6.034s Main android.graphics.Rect
D 6.034s Main android.util.SparseArray
D 6.034s Main android.webkit.WebViewDelegate
D 6.034s Main android.view.autofill.AutofillValue
D 6.034s Main android.content.Context
D 6.034s Main android.view.autofill.AutofillManager
D 6.034s Main android.webkit.WebView
D 6.034s Main android.webkit.WebView$PrivateAccess
D 6.034s Main android.view.textclassifier.TextClassifier
D 6.034s Main android.graphics.RectF
D 6.034s Main android.graphics.Matrix
D 6.034s Main android.view.ViewGroup
D 6.034s Main android.webkit.WebViewClient
D 6.034s Main android.view.ViewStructure
D 6.034s Main android.view.ViewStructure$HtmlInfo$Builder
D 6.034s Main android.view.autofill.AutofillId
D 6.034s Main android.view.ViewStructure$HtmlInfo
D 6.035s Main android.os.Parcelable
D 6.035s Main
D 6.035s Main Missing classes: 17
D 6.035s Main Analysis errors: 1
Basically findbugs is complaining that it can't find /android-23/android.jar, it won't stop compiling though.
This is because we haven't updated findbugs.py, it is using |constants.ANDROID_SDK_VERSION| which is |version_codes.MARSHMALLOW|, and which is 23.https://cs.chromium.org/chromium/src/build/android/pylib/utils/findbugs.py?q=findbugs+-f:third_party&sq=package:chromium&dr=CSs&l=117 .
jbudorick@, seems you had a plan to update it?
[47009/47053] ACTION //clank/android_webview/next:java__findbugs(//build/toolchain/android:android_clang_arm64)
I 0.003s Main [host]> java -classpath /usr/local/google/code/clankium/src/third_party/findbugs/lib/findbugs.jar: -Xmx768m '-Dfindbugs.home="/usr/local/google/code/clankium/src/third_party/findbugs"' -jar /usr/local/google/code/clankium/src/third_party/findbugs/lib/findbugs.jar -textui -sortByClass -pluginList /usr/local/google/code/clankium/src/tools/android/findbugs_plugin/lib/chromiumPlugin.jar -xml:withMessages -auxclasspath /usr/local/google/code/clankium/src/third_party/android_tools/sdk/platforms/android-23/android.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/glue/glue.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/clank/java/content_next_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/android_webview_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/android_webview_commandline_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/android_webview/android_webview_platform_services_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/base/base_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/components/autofill/android/autofill_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/components/autofill/android/provider_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/content/public/android/content_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/net/android/net_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/ui/android/ui_full_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/ui/android/ui_utils_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/build/android/buildhooks/build_hooks_java.jar:/usr/local/google/code/clankium/src/out/Debug/lib.java/build/android/buildhooks/build_hooks_android_java.jar -exclude /usr/local/google/code/clankium/src/build/android/findbugs_filter/findbugs_exclude.xml -output gen/clank/android_webview/next/java__findbugs/result.xml /usr/local/google/code/clankium/src/out/Debug/lib.java/clank/android_webview/next/java.jar
D 6.033s Main The following errors occurred during analysis:
D 6.033s Main File not found: filesystem:/usr/local/google/code/clankium/src/third_party/android_tools/sdk/platforms/android-23/android.jar
D 6.033s Main The following classes needed for analysis were missing:
D 6.033s Main android.view.autofill.AutofillManager$AutofillCallback
D 6.033s Main android.webkit.RenderProcessGoneDetail
D 6.034s Main android.webkit.WebViewFactoryProvider
D 6.034s Main android.webkit.WebViewProvider
D 6.034s Main android.webkit.WebViewProvider$ScrollDelegate
D 6.034s Main android.webkit.WebViewProvider$ViewDelegate
D 6.034s Main android.graphics.Rect
D 6.034s Main android.util.SparseArray
D 6.034s Main android.webkit.WebViewDelegate
D 6.034s Main android.view.autofill.AutofillValue
D 6.034s Main android.content.Context
D 6.034s Main android.view.autofill.AutofillManager
D 6.034s Main android.webkit.WebView
D 6.034s Main android.webkit.WebView$PrivateAccess
D 6.034s Main android.view.textclassifier.TextClassifier
D 6.034s Main android.graphics.RectF
D 6.034s Main android.graphics.Matrix
D 6.034s Main android.view.ViewGroup
D 6.034s Main android.webkit.WebViewClient
D 6.034s Main android.view.ViewStructure
D 6.034s Main android.view.ViewStructure$HtmlInfo$Builder
D 6.034s Main android.view.autofill.AutofillId
D 6.034s Main android.view.ViewStructure$HtmlInfo
D 6.035s Main android.os.Parcelable
D 6.035s Main
D 6.035s Main Missing classes: 17
D 6.035s Main Analysis errors: 1
Basically findbugs is complaining that it can't find /android-23/android.jar, it won't stop compiling though.
This is because we haven't updated findbugs.py, it is using |constants.ANDROID_SDK_VERSION| which is |version_codes.MARSHMALLOW|, and which is 23.
jbudorick@, seems you had a plan to update it?
ct...@chromium.org <ct...@chromium.org> #30
[Empty comment from Monorail migration]
jb...@chromium.org <jb...@chromium.org> #32
I still haven't landed the platform-tools update, so this isn't quite fixed yet. sakal@ has a CL up to do so: https://chromium-review.googlesource.com/c/615163
I'm landing a workaround in devil that should stabilize the main issue we know about w/ 1.0.39.
I'm landing a workaround in devil that should stabilize the main issue we know about w/ 1.0.39.
bu...@chromium.org <bu...@chromium.org> #33
The following revision refers to this bug:
https://chromium.googlesource.com/chromium/src.git/+/a03c912ed42b6cd84e810efe2a9339acdeb5dfd8
commit a03c912ed42b6cd84e810efe2a9339acdeb5dfd8
Author: catapult-deps-roller@chromium.org <catapult-deps-roller@chromium.org>
Date: Thu Aug 17 18:25:52 2017
Roll src/third_party/catapult/ d8ac9725a..dff71035a (4 commits)
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/d8ac9725a4d1..dff71035ad24
$ git log d8ac9725a..dff71035a --date=short --no-merges --format='%ad %ae %s'
2017-08-17 jbudorick [devil] Run adb with ADB_LIBUSB=0.
2017-08-17 perezju [experimental] Add Flipkart/Instagram story
2017-08-17 perezju [telemetry_mini] Add AndroidActions class
2017-08-17 perezju [telemetry_mini] Add UserStory class
Created with:
roll-dep src/third_party/catapult
BUG=735481,752963,752963,752963
Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+/master/autoroll/README.md
If the roll is causing failures, see:
http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls
CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel
TBR=sullivan@chromium.org
Change-Id: I1689a49770676f62f9fcc421f695ad0943fcd009
Reviewed-on:https://chromium-review.googlesource.com/619035
Reviewed-by: <catapult-deps-roller@chromium.org>
Commit-Queue: <catapult-deps-roller@chromium.org>
Cr-Commit-Position: refs/heads/master@{#495236}
[modify]https://crrev.com/a03c912ed42b6cd84e810efe2a9339acdeb5dfd8/DEPS
commit a03c912ed42b6cd84e810efe2a9339acdeb5dfd8
Author: catapult-deps-roller@chromium.org <catapult-deps-roller@chromium.org>
Date: Thu Aug 17 18:25:52 2017
Roll src/third_party/catapult/ d8ac9725a..dff71035a (4 commits)
$ git log d8ac9725a..dff71035a --date=short --no-merges --format='%ad %ae %s'
2017-08-17 jbudorick [devil] Run adb with ADB_LIBUSB=0.
2017-08-17 perezju [experimental] Add Flipkart/Instagram story
2017-08-17 perezju [telemetry_mini] Add AndroidActions class
2017-08-17 perezju [telemetry_mini] Add UserStory class
Created with:
roll-dep src/third_party/catapult
BUG=735481,752963,752963,752963
Documentation for the AutoRoller is here:
If the roll is causing failures, see:
CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.android:android_optional_gpu_tests_rel
TBR=sullivan@chromium.org
Change-Id: I1689a49770676f62f9fcc421f695ad0943fcd009
Reviewed-on:
Reviewed-by: <catapult-deps-roller@chromium.org>
Commit-Queue: <catapult-deps-roller@chromium.org>
Cr-Commit-Position: refs/heads/master@{#495236}
[modify]
bu...@chromium.org <bu...@chromium.org> #34
The following revision refers to this bug:
https://chromium.googlesource.com/android_tools/+/aadb2fed04af8606545b0afe4e3060bc1a15fad7
commit aadb2fed04af8606545b0afe4e3060bc1a15fad7
Author: Sami Kalliomäki <sakal@chromium.org>
Date: Wed Sep 06 13:02:33 2017
Update sdk/platform-tools to version 26.0.0.
Command used to update:
rm -rf sdk/platform-tools &&
wgethttps://dl.google.com/android/repository/platform-tools-latest-linux.zip &&
unzip platform-tools-latest-linux.zip -d sdk &&
rm platform-tools-latest-linux.zip && git add .
Bug: 735481
Change-Id: I7e14e2ca832d73a0613fb5d51d1442247618f584
Reviewed-on:https://chromium-review.googlesource.com/615163
Reviewed-by: John Budorick <jbudorick@chromium.org>
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/pyserial/serial/tools/list_ports_osx.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/results/story_run_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/backends/chrome/crx_id_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/value/summary_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.results.output_formatter.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport2/pkg/sub/__init__.py
[modify]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/devil/devil/android/sdk/adb_wrapper.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.timeline.async_slice.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/util/ps_util.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.core.tracing_controller.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.util.perf_result_data_type.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/devil/devil/android/tools/cpufreq.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-relimport/pkg/oldstyle.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.web_perf.timeline_based_page_test.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-compatmodule/pkg/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/results/csv_pivot_table_output_formatter_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/power_monitor/android_temperature_monitor_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6-nspkg.pth
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/tracing_agent/chrome_tracing_agent_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/tsproxy/LICENSE
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/devil/devil/android/apk_helper_test.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/common/py_utils/py_utils/contextlib_ext.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/backends/google_credentials_backend_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/web_perf/metrics/blob_timeline.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/common/eslint/rules/catapult-camelcase.js
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.util.mac.keychain_helper.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/websocket-client/README.chromium
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.platform.profiler.android_systrace_profiler.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/pkg/function_existing.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/backends/form_based_credentials_backend.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/profiler/vtune_profiler.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.platform.network_controller_backend.html
[modify]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/devil/devil/android/md5sum.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/altgraph/doc/graphalgo.rst
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/testing/dependency_test_dir/other_animals/cat/cat/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.platform.profiler.monsoon_profiler.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/WebKit/README.chromium
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/ipaddr/test-2to3.sh
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.core.discover.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/testing/animated_page.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/ISDN.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.backends.chrome.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/actions/loop.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/websocket-client/README.rst
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/util/external_modules.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/devil/devil/android/tools/device_monitor.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/core/discover_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/doc/modulegraph.rst
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/util/perf_tests_results_helper.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/decorators.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr1/pkg/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/util/statistics_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.core.exceptions.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/util/mac/determine_if_keychain_is_locked.c
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/websocket-client/examples/echoapp_client.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/profiler/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/profiler/android_systrace_profiler.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/PRESUBMIT.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/browser/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/daemonserver.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/examples/benchmarks/tbm_benchmark.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/namedict.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/pyfakefs/pyfakefs/fake_filesystem.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/altgraph/altgraph_tests/test_altgraph.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-compatmodule/pkg/api2.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/top_level.txt
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.backends.chrome_inspector.devtools_client_backend.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.util.exception_formatter.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph.egg-info/zip-safe
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/setup.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.util.webpagereplay.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/wpr/archive_info.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/image_processing/image_util_numpy_impl.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/api-deprecation-procedure.md
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/actions/page_action_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-compatmodule/pkg/api.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.testing.internal.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-setuptools-namespace/build/lib/nspkg/nssubpkg/sub.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/test_setuptools_nspkg.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/power_monitor/powermetrics_power_monitor.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.actions.swipe.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/dependency_links.txt
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/systrace/systrace/tracing_agents/agents_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/httpclient_test.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.backends.chrome_inspector.devtools_http.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/COPYING
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/KEY.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/update.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-packages/pkg/sub1/modA.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/pyserial/serial/tools/list_ports_windows.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/websocket-client/websocket/tests/data/header01.txt
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/util/camel_case_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/backends/chrome/extension_backend.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/HINFO.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/actions/drag.js
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr4/pkg/core/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/pkg/function_conditional_existing.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/actions/utils.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.web_perf.metrics.rendering_stats.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-packages/pkg/sub2/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/mox3/mox3/tests/mox_helper.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/SOURCES.txt
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-pep420-namespace/path2/package/sub1.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/PKG-INFO
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/browser/user_agent_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.web_perf.metrics.gpu_timeline.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/page/__init__.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.util.binary_manager.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph/util.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/testing/host.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr6/module.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/core/android_platform.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/timeline/bounds.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/SOA.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/pyserial/serial/rfc2217.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/backends/browser_backend_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.story.story.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/keybase.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/inspector_console.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/power_monitor/powermetrics_power_monitor_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.browser.extension_page.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.platform.system_info.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/pyfakefs/pyfakefs/all_tests.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/jsmin/README.rst
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/pkg/toplevel_conditional_import_existing.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/testing/powermetrics_output.output
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/timeline/surface_flinger_importer.py
[modify]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/devil/devil/devil_env.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/web_perf/metrics/gpu_timeline.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.platform.device_finder.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/pyserial/LICENSE.txt
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/jsmin/PKG-INFO
[modify]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/devil/devil/devil_dependencies.json
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/docs/pydoc/telemetry.internal.platform.profiler.android_profiling_helper.html
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/pyfakefs/pyfakefs/setup.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/NSEC.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/util/matching.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/platform/profiler/android_profiling_helper_unittest.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/third_party/altgraph/doc/changelog.rst
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/web_perf/metrics/v8_gc_latency.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systrace/catapult/telemetry/telemetry/internal/image_processing/image_util_bitmap_impl.py
[add]https://crrev.com/aadb2fed04af8606545b0afe4e3060bc1a15fad7/sdk/platform-tools/systra
commit aadb2fed04af8606545b0afe4e3060bc1a15fad7
Author: Sami Kalliomäki <sakal@chromium.org>
Date: Wed Sep 06 13:02:33 2017
Update sdk/platform-tools to version 26.0.0.
Command used to update:
rm -rf sdk/platform-tools &&
wget
unzip platform-tools-latest-linux.zip -d sdk &&
rm platform-tools-latest-linux.zip && git add .
Bug: 735481
Change-Id: I7e14e2ca832d73a0613fb5d51d1442247618f584
Reviewed-on:
Reviewed-by: John Budorick <jbudorick@chromium.org>
[add]
[add]
[add]
[add]
[add]
[add]
[modify]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[modify]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[modify]
[add]
[add]
[add]
[add]
[modify]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
bu...@chromium.org <bu...@chromium.org> #35
The following revision refers to this bug:
https://chromium.googlesource.com/chromium/src.git/+/e39219b5dd904f4ab75192ba97f0ce720cd7b58e
commit e39219b5dd904f4ab75192ba97f0ce720cd7b58e
Author: Peter Wen <wnwen@chromium.org>
Date: Wed Sep 06 15:47:34 2017
Android: Roll src/third_party/android_tools
Picking up platform-tools version 26 for lint. Will update lint
suppression in a follow-up CL.
https://chromium.googlesource.com/android_tools.git/+/aadb2fed04af8606545b0afe4e3060bc1a15fad7
BUG=739746,735481
Change-Id: I2c2fb0e489d6007b8b71fd1e84b50ad815cc7f42
Reviewed-on:https://chromium-review.googlesource.com/652767
Commit-Queue: Peter Wen <wnwen@chromium.org>
Reviewed-by: John Budorick <jbudorick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#499973}
[modify]https://crrev.com/e39219b5dd904f4ab75192ba97f0ce720cd7b58e/DEPS
commit e39219b5dd904f4ab75192ba97f0ce720cd7b58e
Author: Peter Wen <wnwen@chromium.org>
Date: Wed Sep 06 15:47:34 2017
Android: Roll src/third_party/android_tools
Picking up platform-tools version 26 for lint. Will update lint
suppression in a follow-up CL.
BUG=739746,735481
Change-Id: I2c2fb0e489d6007b8b71fd1e84b50ad815cc7f42
Reviewed-on:
Commit-Queue: Peter Wen <wnwen@chromium.org>
Reviewed-by: John Budorick <jbudorick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#499973}
[modify]
wf...@gmail.com <wf...@gmail.com> #37
[Comment Deleted]
gi...@appspot.gserviceaccount.com <gi...@appspot.gserviceaccount.com> #38
The following revision refers to this bug:
https://chromium.googlesource.com/android_tools/+/e9d4018e149d50172ed462a7c21137aa915940ec
commit e9d4018e149d50172ed462a7c21137aa915940ec
Author: John Budorick <jbudorick@chromium.org>
Date: Tue Jun 27 21:02:12 2017
Android O SDK.
This includes changes to:
build-tools/ -> 26.0.0
emulator/ (now separate from tools/)
platforms/ -> android-26
tools/
tools-lint/ -> 25.3.2
Bug: 735481
Change-Id: I883ae56aafb1a0158dbfa308bb5ff499732e5c79
Reviewed-on:https://chromium-review.googlesource.com/550585
Reviewed-by: Andrew Grieve <agrieve@chromium.org>
[modify]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/.gitignore
[modify]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/README.chromium
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/aapt
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/aapt2
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/aidl
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/apksigner
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/bcc_compat
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/dexdump
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/jack-coverage-plugin.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/jack-jacoco-reporter.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/jack.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/jill.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/lib/apksigner.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/lib/dx.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/lib64/libLLVM.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/lib64/libbcc.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/lib64/libbcinfo.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/lib64/libc++.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/lib64/libclang.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/llvm-rs-cc
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/mainDexClasses
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/mainDexClasses.rules
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/CMakeLists.txt
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/Intrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/LICENSE.TXT
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/__clang_cuda_runtime_wrapper.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/__wmmintrin_aes.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/__wmmintrin_pclmul.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/altivec.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/ammintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/arm_acle.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx2intrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512bwintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512cdintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512dqintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512erintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512fintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512vlbwintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512vldqintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avx512vlintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/avxintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/bmiintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/cuda_builtin_vars.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/emmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/f16cintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/float.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/fma4intrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/fmaintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/htmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/htmxlintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/ia32intrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/immintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/inttypes.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/mm3dnow.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/mmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/module.modulemap
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/pmmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/popcntintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/smmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/tbmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/tmmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/unwind.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/x86intrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/xmmintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/clang-include/xopintrin.h
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/include/rs_math.rsh
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/include/rs_object_types.rsh
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/bc/arm64-v8a/libclcore.bc
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/bc/armeabi-v7a/libclcore.bc
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/bc/mips/libclcore.bc
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/bc/x86/libclcore.bc
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/bc/x86_64/libclcore.bc
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/blas/arm64-v8a/libblasV8.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/blas/armeabi-v7a/libblasV8.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/blas/mips/libblasV8.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/blas/x86/libblasV8.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/blas/x86_64/libblasV8.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/arm64-v8a/libc.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/arm64-v8a/libcompiler_rt.a
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/arm64-v8a/libm.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/armeabi-v7a/libc.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/armeabi-v7a/libcompiler_rt.a
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/armeabi-v7a/libm.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/mips/libc.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/mips/libcompiler_rt.a
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/mips/libm.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/x86/libc.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/x86/libcompiler_rt.a
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/x86/libm.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/x86_64/libc.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/x86_64/libcompiler_rt.a
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/intermediates/x86_64/libm.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/arm64-v8a/libRSSupport.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/arm64-v8a/librsjni.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/armeabi-v7a/libRSSupport.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/armeabi-v7a/librsjni.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/mips/libRSSupport.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/mips/librsjni.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/x86/libRSSupport.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/x86/librsjni.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/x86_64/libRSSupport.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/packaged/x86_64/librsjni.so
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/renderscript/lib/renderscript-v8.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/source.properties
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/split-select
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/build-tools/25.0.2/zipalign
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/NOTICE.txt
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/aapt
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/aapt2
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/aarch64-linux-android-ld
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/aidl
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/arm-linux-androideabi-ld
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/bcc_compat
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/dexdump
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/dx
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/i686-linux-android-ld
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/jack-coverage-plugin.jar
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/jack-jacoco-reporter.jar
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/jack.jar
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/jill.jar
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib/dx.jar
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib/shrinkedAndroid.jar
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib64/libLLVM.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib64/libaapt2_jni.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib64/libbcc.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib64/libbcinfo.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib64/libc++.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/lib64/libclang.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/llvm-rs-cc
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/mainDexClasses
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/mainDexClasses.rules
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/mainDexClassesNoAapt.rules
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/mipsel-linux-android-ld
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/package.xml
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/CMakeLists.txt
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/LICENSE.TXT
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/__clang_cuda_cmath.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/__clang_cuda_intrinsics.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/__clang_cuda_math_forward_declares.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/__clang_cuda_runtime_wrapper.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/__stddef_max_align_t.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/__wmmintrin_aes.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/__wmmintrin_pclmul.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/adxintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/altivec.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/ammintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/arm_acle.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx2intrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512bwintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512cdintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512dqintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512erintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512fintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512ifmaintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512ifmavlintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512pfintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512vbmiintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512vbmivlintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512vlbwintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512vlcdintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512vldqintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avx512vlintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/avxintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/bmi2intrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/bmiintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/clflushoptintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/cpuid.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/cuda_builtin_vars.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/emmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/f16cintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/float.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/fma4intrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/fmaintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/fxsrintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/htmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/htmxlintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/ia32intrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/immintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/intrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/inttypes.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/iso646.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/limits.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/lzcntintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/mm3dnow.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/mm_malloc.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/mmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/module.modulemap
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/mwaitxintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/nmmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/opencl-c.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/pkuintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/pmmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/popcntintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/prfchwintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/rdseedintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/rtmintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/s390intrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/shaintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/smmintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/stdalign.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/stdarg.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/stdatomic.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/stdbool.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/stddef.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/stdint.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/stdnoreturn.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/tbmintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/tgmath.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/tmmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/unwind.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/vadefs.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/varargs.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/vecintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/wmmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/x86intrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/xmmintrin.h
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/xopintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/xsavecintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/xsaveintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/xsaveoptintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/xsavesintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/clang-include/xtestintrin.h
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_allocation_create.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_allocation_data.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_atomic.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_convert.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_core.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_debug.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_for_each.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_graphics.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_io.rsh
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_math.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_matrix.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_object_info.rsh
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_object_types.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_quaternion.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_time.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_value_types.rsh
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/include/rs_vector_math.rsh
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/bc/arm64-v8a/libclcore.bc
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/bc/armeabi-v7a/libclcore.bc
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/bc/mips/libclcore.bc
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/bc/x86/libclcore.bc
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/bc/x86_64/libclcore.bc
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/blas/arm64-v8a/libblasV8.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/blas/armeabi-v7a/libblasV8.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/blas/mips/libblasV8.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/blas/x86/libblasV8.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/blas/x86_64/libblasV8.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/arm64-v8a/libc.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/arm64-v8a/libcompiler_rt.a
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/arm64-v8a/libm.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/armeabi-v7a/libc.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/armeabi-v7a/libcompiler_rt.a
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/armeabi-v7a/libm.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/mips/libc.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/mips/libcompiler_rt.a
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/mips/libm.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/x86/libc.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/x86/libcompiler_rt.a
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/x86/libm.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/x86_64/libc.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/x86_64/libcompiler_rt.a
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/intermediates/x86_64/libm.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/arm64-v8a/libRSSupport.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/arm64-v8a/librsjni.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/armeabi-v7a/libRSSupport.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/armeabi-v7a/librsjni.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/mips/libRSSupport.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/mips/librsjni.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/x86/libRSSupport.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/x86/librsjni.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/x86_64/libRSSupport.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/packaged/x86_64/librsjni.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/renderscript/lib/renderscript-v8.jar
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/runtime.properties
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/source.properties
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/split-select
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/x86_64-linux-android-ld
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/build-tools/26.0.0/zipalign
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/NOTICE.txt
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/bin64/e2fsck
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/bin64/fsck.ext4
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/bin64/mkfs.ext4
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/bin64/resize2fs
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/bin64/tune2fs
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/emulator
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/emulator-check
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/emulator64-arm
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/emulator64-crash-service
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/emulator64-mips
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/emulator64-x86
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/advancedFeatures.ini
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/ca-bundle.pem
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/hardware-properties.ini
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/libstdc++/libstdc++.so.6
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/libstdc++/libstdc++.so.6.0.18
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/pc-bios/bios-256k.bin
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/pc-bios/bios.bin
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/pc-bios/efi-virtio.rom
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/pc-bios/kvmvapic.bin
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/pc-bios/linuxboot.bin
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/pc-bios/linuxboot_dma.bin
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib/pc-bios/vgabios-cirrus.bin
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/gles_mesa/libGL.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/gles_mesa/libGL.so.1
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/gles_swiftshader/libEGL.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/gles_swiftshader/libGLES_CM.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/gles_swiftshader/libGLESv2.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/lib64EGL_translator.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/lib64GLES12Translator.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/lib64GLES_CM_translator.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/lib64GLES_V2_translator.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/lib64OpenglRender.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/lib64emugl_test_shared_library.so
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/libstdc++/libstdc++.so.6
[rename]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/libstdc++/libstdc++.so.6.0.18
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Concurrent.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Concurrent.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Concurrent.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Concurrent.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Core.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Core.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Core.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Core.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5DBus.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5DBus.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5DBus.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5DBus.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Gui.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Gui.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Gui.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Gui.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Network.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Network.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Network.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Network.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5OpenGL.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5OpenGL.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5OpenGL.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5OpenGL.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5PrintSupport.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5PrintSupport.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5PrintSupport.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5PrintSupport.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Sql.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Sql.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Sql.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Sql.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Svg.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Svg.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Svg.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Svg.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Test.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Test.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Test.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Test.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Widgets.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Widgets.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Widgets.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Widgets.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5XcbQpa.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5XcbQpa.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5XcbQpa.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5XcbQpa.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Xml.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Xml.so.5
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Xml.so.5.7
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/lib/libQt5Xml.so.5.7.0
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/bearer/libqconnmanbearer.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/bearer/libqgenericbearer.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/bearer/libqnmbearer.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/generic/libqevdevkeyboardplugin.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/generic/libqevdevmouseplugin.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/generic/libqevdevtabletplugin.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/generic/libqevdevtouchplugin.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/generic/libqtuiotouchplugin.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/iconengines/libqsvgicon.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/imageformats/libqgif.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/imageformats/libqico.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/imageformats/libqjpeg.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/imageformats/libqsvg.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/platforms/libqlinuxfb.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/platforms/libqminimal.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/platforms/libqoffscreen.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/platforms/libqxcb.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/lib64/qt/plugins/sqldrivers/libqsqlite.so
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/mksdcard
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/package.xml
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-system-aarch64
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-system-armel
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-system-i386
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-system-mips64el
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-system-mipsel
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-system-x86_64
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-upstream-aarch64
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-upstream-armel
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-upstream-i386
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-upstream-mips64el
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-upstream-mipsel
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/qemu/linux-x86_64/qemu-upstream-x86_64
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/resources/resources.rcc
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/emulator/source.properties
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/extras/android/m2repository/package.xml
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/extras/android/support/package.xml
[modify]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/extras/chromium/support/src/org/chromium/android/support/PackageManagerWrapper.java
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/extras/google/gcm/package.xml
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/licenses/android-sdk-license
[add]https://crrev.com/e9d4018e149d50172ed462a7c21137aa915940ec/sdk/platform-tools/package.xml
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/platforms/android-25/android-stubs-src.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/platforms/android-25/android.jar
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/platforms/android-25/build.prop
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/platforms/android-25/data/activity_actions.txt
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/platforms/android-25/data/broadcast_actions.txt
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a88542ead6cd0a/sdk/platforms/android-25/data/categories.txt
[delete]https://crrev.com/023e2f65409a2b7886b8d644d6a8. ..
commit e9d4018e149d50172ed462a7c21137aa915940ec
Author: John Budorick <jbudorick@chromium.org>
Date: Tue Jun 27 21:02:12 2017
Android O SDK.
This includes changes to:
build-tools/ -> 26.0.0
emulator/ (now separate from tools/)
platforms/ -> android-26
tools/
tools-lint/ -> 25.3.2
Bug: 735481
Change-Id: I883ae56aafb1a0158dbfa308bb5ff499732e5c79
Reviewed-on:
Reviewed-by: Andrew Grieve <agrieve@chromium.org>
[modify]
[modify]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[rename]
[add]
[add]
[rename]
[add]
[rename]
[add]
[add]
[rename]
[rename]
[add]
[add]
[add]
[add]
[add]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[add]
[add]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[add]
[add]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[rename]
[rename]
[add]
[rename]
[add]
[add]
[add]
[rename]
[add]
[add]
[add]
[add]
[rename]
[rename]
[rename]
[rename]
[rename]
[add]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[add]
[rename]
[add]
[add]
[rename]
[rename]
[rename]
[rename]
[add]
[add]
[add]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[add]
[rename]
[rename]
[add]
[rename]
[rename]
[rename]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[add]
[add]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[add]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[rename]
[add]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[rename]
[rename]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[add]
[modify]
[add]
[add]
[add]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
[delete]
Description
see Get the O SDK in