Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Unified Diff: components/supervised_user_error_page/BUILD.gn

Issue 1890203002: Implement Web Restrictions in WebView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/supervised_user_error_page/BUILD.gn
diff --git a/components/supervised_user_error_page/BUILD.gn b/components/supervised_user_error_page/BUILD.gn
index 410712845e92241402debb282703f43d73ebd8ae..777f6c02471f370e2c2755363d5b39281b33067b 100644
--- a/components/supervised_user_error_page/BUILD.gn
+++ b/components/supervised_user_error_page/BUILD.gn
@@ -16,6 +16,19 @@ source_set("supervised_user_error_page") {
]
}
+if (target_os == "android") {
+ source_set("gin") {
+ sources = [
+ "supervised_user_gin_wrapper.cc",
+ "supervised_user_gin_wrapper.h",
+ ]
+ deps = [
+ "//components/web_restrictions:interfaces",
+ "//content/public/renderer",
+ ]
+ }
+}
+
source_set("unit_tests") {
testonly = true
sources = [

Powered by Google App Engine
This is Rietveld 408576698