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

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: Rebase to fix compile problem 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/components/supervised_user_error_page/BUILD.gn b/components/supervised_user_error_page/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..410712845e92241402debb282703f43d73ebd8ae
--- /dev/null
+++ b/components/supervised_user_error_page/BUILD.gn
@@ -0,0 +1,34 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("supervised_user_error_page") {
+ sources = [
+ "supervised_user_error_page.cc",
+ "supervised_user_error_page.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/resources",
+ "//components/strings",
+ "//ui/base",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "supervised_user_error_page_unittest.cc",
+ ]
+ deps = [
+ ":supervised_user_error_page",
+ "//base",
+ "//base/test:test_support",
+ "//components/resources",
+ "//components/strings",
+ "//testing/gmock",
+ "//testing/gtest",
+ "//ui/base",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698