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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("supervised_user_error_page") {
6 sources = [
7 "supervised_user_error_page.cc",
8 "supervised_user_error_page.h",
9 ]
10
11 deps = [
12 "//base",
13 "//components/resources",
14 "//components/strings",
15 "//ui/base",
16 ]
17 }
18
19 source_set("unit_tests") {
20 testonly = true
21 sources = [
22 "supervised_user_error_page_unittest.cc",
23 ]
24 deps = [
25 ":supervised_user_error_page",
26 "//base",
27 "//base/test:test_support",
28 "//components/resources",
29 "//components/strings",
30 "//testing/gmock",
31 "//testing/gtest",
32 "//ui/base",
33 ]
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698