OLD | NEW |
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 static_library("supervised_user_error_page") { | 5 static_library("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 |
(...skipping 13 matching lines...) Expand all Loading... |
24 } | 24 } |
25 } | 25 } |
26 | 26 |
27 if (target_os == "android") { | 27 if (target_os == "android") { |
28 source_set("gin") { | 28 source_set("gin") { |
29 sources = [ | 29 sources = [ |
30 "gin_wrapper.cc", | 30 "gin_wrapper.cc", |
31 "gin_wrapper.h", | 31 "gin_wrapper.h", |
32 ] | 32 ] |
33 deps = [ | 33 deps = [ |
| 34 "//cc/paint", |
34 "//components/web_restrictions:interfaces", | 35 "//components/web_restrictions:interfaces", |
35 "//content/public/renderer", | 36 "//content/public/renderer", |
36 "//gin", | 37 "//gin", |
37 "//third_party/WebKit/public:blink_headers", | 38 "//third_party/WebKit/public:blink_headers", |
38 "//url", | 39 "//url", |
39 ] | 40 ] |
40 } | 41 } |
41 } | 42 } |
42 | 43 |
43 source_set("unit_tests") { | 44 source_set("unit_tests") { |
44 testonly = true | 45 testonly = true |
45 sources = [ | 46 sources = [ |
46 "supervised_user_error_page_unittest.cc", | 47 "supervised_user_error_page_unittest.cc", |
47 ] | 48 ] |
48 deps = [ | 49 deps = [ |
49 ":supervised_user_error_page", | 50 ":supervised_user_error_page", |
50 "//base", | 51 "//base", |
51 "//base/test:test_support", | 52 "//base/test:test_support", |
52 "//components/resources", | 53 "//components/resources", |
53 "//components/strings", | 54 "//components/strings", |
54 "//testing/gmock", | 55 "//testing/gmock", |
55 "//testing/gtest", | 56 "//testing/gtest", |
56 "//ui/base", | 57 "//ui/base", |
57 ] | 58 ] |
58 } | 59 } |
OLD | NEW |