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

Unified Diff: components/supervised_user_error_page/BUILD.gn

Issue 1808653003: Move the supervised user error page to a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/chrome/child/BUILD.gn b/components/supervised_user_error_page/BUILD.gn
similarity index 52%
copy from chrome/child/BUILD.gn
copy to components/supervised_user_error_page/BUILD.gn
index 1b268f18b2ea6c814f23cea3133a02544453e6b5..913a189518fda384db082075d8355e44e6566e1e 100644
--- a/chrome/child/BUILD.gn
+++ b/components/supervised_user_error_page/BUILD.gn
@@ -2,16 +2,16 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-static_library("child") {
+source_set("supervised_user_error_page") {
sources = [
- "pdf_child_init.cc",
- "pdf_child_init.h",
+ "supervised_user_error_page.cc",
+ "supervised_user_error_page.h",
]
- configs += [ "//build/config/compiler:wexit_time_destructors" ]
-
deps = [
"//base",
- "//content/public/child",
+ "//components/resources",
+ "//components/strings",
+ "//ui/base",
]
}

Powered by Google App Engine
This is Rietveld 408576698