Commit 8a1224af authored by Lindsay Pasricha's avatar Lindsay Pasricha Committed by Commit Bot

Roll src/ios/third_party/earl_grey2/src/ 6791abc9c6967ce01b2c069e36065e59f46994ac

to roll in status bar fix.

https://chromium.googlesource.com/external/github.com/google/EarlGrey.git/+log/6791abc9c6967ce01b2c069e36065e59f46994ac

6791abc Optimizing visibility checker by only drawing portions necessary for screenshots. by Mobile DevX Robot · 4 days ago earlgrey2
0fea3ae Optimizing visibility checker by only drawing portions necessary for screenshots. by Mobile DevX Robot · 4 days ago
186436d Delete crash in remote executor. by Aditya Atul Tirodkar · 7 days ago
054822e Don't try and check for visibility of views that are definitely not visible by Aditya Atul Tirodkar · 8 days ago
690fdaa Move handler getter to NSThread mainThread. by Aditya Atul Tirodkar · 8 days ago
fb37152 Collect gVisibilityDuration across all methods. by Mobile DevX Robot · 8 days ago
110b879 Don't try and check for visibility of views that are definitely not visible by Mobile DevX Robot · 9 days ago
4c4b2b0 Format block to use var and use return value instead of touching error directly. by Sundeep Khandpur · 9 days ago
a9fd663 Change EG2 and eDO to build all archs by Brett Fazio · 10 days ago
4b503fa Fix unused variable warning. by Aditya Atul Tirodkar · 10 days ago
861c515 Shorten the names of failure artifacts by getting rid of the screenshot prefix. by Sundeep Khandpur · 10 days ago
a1575e4 Nix documentation line saying to use 'gem install earlgrey' by Brett Fazio · 10 days ago
1b93403 Add Interaction point info in matcher. by Aditya Atul Tirodkar · 11 days ago
f942ffb iOS 13 build fix. by Aditya Atul Tirodkar · 11 days ago

Bug:991334,977161

Change-Id: Idc71bdff3e3022caef57eb22b27f3e06109b12a4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1727890
Commit-Queue: Lindsay Pasricha <lindsayw@chromium.org>
Reviewed-by: default avatarRohit Rao <rohitrao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#687686}
parent a6120d68
......@@ -448,7 +448,7 @@ deps = {
},
'src/ios/third_party/earl_grey2/src': {
'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '1139ce0d7c9bb280b89acf6d7c0ef8255884e906',
'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '6791abc9c6967ce01b2c069e36065e59f46994ac',
'condition': 'checkout_ios',
},
......
......@@ -32,6 +32,7 @@ config("config") {
"//ios/third_party/earl_grey2/src/UILib/Additions",
"//ios/third_party/earl_grey2/src/UILib/Provider",
"//ios/third_party/earl_grey2/src/UILib/Traversal",
"//ios/third_party/earl_grey2/src/UILib/VisibilityChecker",
"//ios/third_party/earl_grey2/src/TestLib",
"//ios/third_party/earl_grey2/src/TestLib/AlertHandling",
"//ios/third_party/earl_grey2/src/TestLib/AppleInternals",
......@@ -110,6 +111,7 @@ source_set("common_lib") {
"src/CommonLib/GREYConstants.m",
"src/CommonLib/GREYDefines.h",
"src/CommonLib/GREYDiagnosable.h",
"src/CommonLib/GREYDiagnosable.m",
"src/CommonLib/GREYLogger.h",
"src/CommonLib/GREYObjcRuntime.h",
"src/CommonLib/GREYObjcRuntime.m",
......@@ -157,7 +159,7 @@ source_set("ui_lib_shared_headers") {
sources = [
"src/UILib/GREYElementHierarchy.h",
"src/UILib/GREYScreenshotter.h",
"src/UILib/GREYVisibilityChecker.h",
"src/UILib/VisibilityChecker/GREYVisibilityChecker.h",
]
}
......@@ -174,8 +176,6 @@ source_set("ui_lib") {
"src/UILib/GREYElementHierarchy.m",
"src/UILib/GREYScreenshotter+Private.h",
"src/UILib/GREYScreenshotter.m",
"src/UILib/GREYVisibilityChecker+Private.h",
"src/UILib/GREYVisibilityChecker.m",
"src/UILib/Provider/GREYDataEnumerator.h",
"src/UILib/Provider/GREYDataEnumerator.m",
"src/UILib/Provider/GREYElementProvider.h",
......@@ -190,6 +190,8 @@ source_set("ui_lib") {
"src/UILib/Traversal/GREYTraversalFunctions.m",
"src/UILib/Traversal/GREYTraversalObject.h",
"src/UILib/Traversal/GREYTraversalObject.m",
"src/UILib/VisibilityChecker/GREYVisibilityChecker+Private.h",
"src/UILib/VisibilityChecker/GREYVisibilityChecker.m",
]
deps = [
......@@ -321,7 +323,6 @@ ios_framework_bundle("app_framework") {
"src/AppFramework/Config/GREYAppConfiguration.m",
"src/AppFramework/Core/GREYElementFinder.h",
"src/AppFramework/Core/GREYElementFinder.m",
"src/AppFramework/Core/GREYElementInteraction+Private.h",
"src/AppFramework/Core/GREYElementInteraction.m",
"src/AppFramework/Core/GREYInteractionDataSource.h",
"src/AppFramework/Delegate/GREYCAAnimationDelegate.h",
......
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