Commit 77d9f6d2 authored by Zhaoyang Li's avatar Zhaoyang Li Committed by Commit Bot

Roll src/ios/third_party/earl_grey2/src/ e8573af98..891b1b683 (44 commits)

https://chromium.googlesource.com/external/github.com/google/EarlGrey.git/+log/e8573af9803f..891b1b683a7e

$ git log e8573af98..891b1b683 --date=short --no-merges --format='%ad %ae %s'
2020-11-12 albertbow Fix xcode complaint of "implicit reference of 'self'".
2020-11-09 chanheepark Move performing action to the main thread to improve stability.
2020-11-09 tirodkar Test rig cleanup
2020-11-09 chanheepark Use common method for snapshotElement: method in GREYScreenshotter.
2020-11-06 chanheepark Add shouldRunOnMainThread method to GREYAction protocol.
2020-11-06 tirodkar Export GREYConstants.h
2020-11-04 mobile-devx-github-bot Use common method for snapshotElement: method in GREYScreenshotter.
2020-11-03 chanheepark Use common method for snapshotElement: method in GREYScreenshotter.
2020-11-03 tirodkar NSTimer Ignoring
2020-11-03 tirodkar FunctionalTest Failure handler cleanup
2020-11-02 mobile-devx-github-bot Fix "variable length array folded to constant array as an extension"
2020-10-29 tirodkar NSRunloop tracking improvements
2020-10-29 tirodkar Multi-window setter API.
2020-10-27 tirodkar Dedupe superview/subview pairs.
2020-10-27 chanheepark Location alert strings cleanup and add iOS 14 string.
2020-10-27 tirodkar Fix type text comment in GREYActions.h
2020-10-23 albertbow Update Demo app's Podfile since EarlGrey now pins to eDO 1.0.1.
2020-10-23 tirodkar Verblose Log docs
2020-10-23 chanheepark Modify system alert text check so it doesn't depend on the iOS version.
2020-10-21 tirodkar Add CLLocationManager to GREYValueType
2020-10-21 tirodkar Successful app launch eDO property.
2020-10-21 chanheepark Internal
2020-10-21 mobile-devx-github-bot Add dismissKeyboard to the Swift EarlGrey wrapper.
2020-10-20 albertbow Update Podspec for 2.2.0 release.
2020-10-19 tirodkar Update GREYLogger docs.
2020-10-16 albertbow Update CHANGELOG.md for 2.2.0 release.
2020-10-09 tirodkar GREYCAAnimationDelegate optimization.
2020-10-09 chanheepark Internal
2020-10-07 tirodkar Internal
2020-10-07 chanheepark Use runloop spinner to wait for the keyboard to appear instead of CFRunLoopRunInMode.
2020-10-06 chanheepark Track completion block for UIView animations for better synchronization.
2020-10-06 tirodkar Device test fix.
2020-10-06 chanheepark Wait for the uppercase keyplane to appear when autocapitalization is on.
2020-10-02 tirodkar Fix runtime-error with functional tests.
2020-09-30 tirodkar Fix Xcode project in OSS
2020-09-29 tirodkar Fix Slide test for Xcode 12.
2020-09-28 chanheepark Minor improvements / cleanups.
2020-09-28 tirodkar Fix nullability in GREYLogger
2020-09-25 tirodkar Verbose Logging Config.
2020-09-24 tirodkar Context Menu support
2020-09-24 albertbow Fix isKindOfClass check in Diagnostics.
2020-09-23 tirodkar Small accessibility refactor
2020-09-18 albertbow Adds C helper functions to transfer array's hosting process in EarlGrey.
2020-09-17 tirodkar Fix iOS 14 selection test.

Created with:
  roll-dep src/ios/third_party/earl_grey2/src

Bug: 1146576
Change-Id: Ia6cab97990b3e7ee4edef812cad7a7734cb89186
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2536814Reviewed-by: default avatarJustin Cohen <justincohen@chromium.org>
Commit-Queue: Zhaoyang Li <zhaoyangli@chromium.org>
Cr-Commit-Position: refs/heads/master@{#827967}
parent 872fdbb9
...@@ -526,7 +526,7 @@ deps = { ...@@ -526,7 +526,7 @@ deps = {
}, },
'src/ios/third_party/earl_grey2/src': { 'src/ios/third_party/earl_grey2/src': {
'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'e8573af9803f1b393a1ddb07b779f882cf947036', 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '891b1b683a7ed73f98f8064672a95ca77060df42',
'condition': 'checkout_ios', 'condition': 'checkout_ios',
}, },
......
...@@ -85,6 +85,8 @@ source_set("common_lib") { ...@@ -85,6 +85,8 @@ source_set("common_lib") {
"src/CommonLib/Config/GREYConfiguration+Private.h", "src/CommonLib/Config/GREYConfiguration+Private.h",
"src/CommonLib/Config/GREYConfiguration.h", "src/CommonLib/Config/GREYConfiguration.h",
"src/CommonLib/Config/GREYConfiguration.m", "src/CommonLib/Config/GREYConfiguration.m",
"src/CommonLib/DistantObject/GREYDistantObjectUtils.h",
"src/CommonLib/DistantObject/GREYDistantObjectUtils.m",
"src/CommonLib/DistantObject/GREYHostApplicationDistantObject.h", "src/CommonLib/DistantObject/GREYHostApplicationDistantObject.h",
"src/CommonLib/DistantObject/GREYHostBackgroundDistantObject.h", "src/CommonLib/DistantObject/GREYHostBackgroundDistantObject.h",
"src/CommonLib/DistantObject/GREYTestApplicationDistantObject+Private.h", "src/CommonLib/DistantObject/GREYTestApplicationDistantObject+Private.h",
...@@ -142,7 +144,10 @@ source_set("common_lib") { ...@@ -142,7 +144,10 @@ source_set("common_lib") {
public_configs = [ ":config" ] public_configs = [ ":config" ]
frameworks = [ "UIKit.framework" ] frameworks = [
"CoreLocation.framework",
"UIKit.framework",
]
configs -= [ configs -= [
"//build/config/gcc:symbol_visibility_hidden", "//build/config/gcc:symbol_visibility_hidden",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment