forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix FlutterViewUpdateCustomAccessibilityActions uses correct string l…
…ist (flutter#19623) * fix FlutterViewUpdateCustomAccessibilityActions uses correct string list * add test to ci * format * add license file * fix test * fix lint
- Loading branch information
Showing
10 changed files
with
342 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
shell/platform/android/platform_view_android_delegate/BUILD.gn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2013 The Flutter Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
import("//flutter/common/config.gni") | ||
import("//flutter/testing/testing.gni") | ||
|
||
source_set("platform_view_android_delegate") { | ||
sources = [ | ||
"platform_view_android_delegate.cc", | ||
"platform_view_android_delegate.h", | ||
] | ||
|
||
public_configs = [ "//flutter:config" ] | ||
|
||
deps = [ | ||
"//flutter/common", | ||
"//flutter/fml", | ||
"//flutter/lib/ui", | ||
"//flutter/shell/common", | ||
"//flutter/shell/platform/android/jni", | ||
"//third_party/skia", | ||
] | ||
} | ||
|
||
test_fixtures("platform_view_android_delegate_fixtures") { | ||
fixtures = [] | ||
} | ||
|
||
executable("platform_view_android_delegate_unittests") { | ||
testonly = true | ||
|
||
sources = [ | ||
"platform_view_android_delegate_unittests.cc", | ||
] | ||
|
||
deps = [ | ||
":platform_view_android_delegate", | ||
":platform_view_android_delegate_fixtures", | ||
"//flutter/shell/platform/android/jni:jni_mock", | ||
"//flutter/testing", | ||
"//flutter/testing:dart", | ||
"//flutter/third_party/txt", | ||
] | ||
} |
Oops, something went wrong.