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

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

Powered by Google App Engine
This is Rietveld 408576698