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 import("//build/config/android/rules.gni") |
| 6 |
5 static_library("supervised_user_error_page") { | 7 static_library("supervised_user_error_page") { |
6 sources = [ | 8 sources = [ |
7 "supervised_user_error_page.cc", | 9 "supervised_user_error_page.cc", |
8 "supervised_user_error_page.h", | 10 "supervised_user_error_page.h", |
9 ] | 11 ] |
10 | 12 |
11 deps = [ | 13 deps = [ |
12 "//base", | 14 "//base", |
13 "//components/resources", | 15 "//components/resources", |
14 "//components/strings", | 16 "//components/strings", |
(...skipping 19 matching lines...) Expand all Loading... |
34 "//cc/paint", | 36 "//cc/paint", |
35 "//components/web_restrictions:interfaces", | 37 "//components/web_restrictions:interfaces", |
36 "//content/public/renderer", | 38 "//content/public/renderer", |
37 "//gin", | 39 "//gin", |
38 "//third_party/WebKit/public:blink_headers", | 40 "//third_party/WebKit/public:blink_headers", |
39 "//url", | 41 "//url", |
40 ] | 42 ] |
41 } | 43 } |
42 } | 44 } |
43 | 45 |
| 46 java_cpp_enum("enums_srcjar") { |
| 47 sources = [ |
| 48 "supervised_user_error_page.h", |
| 49 ] |
| 50 } |
| 51 |
44 source_set("unit_tests") { | 52 source_set("unit_tests") { |
45 testonly = true | 53 testonly = true |
46 sources = [ | 54 sources = [ |
47 "supervised_user_error_page_unittest.cc", | 55 "supervised_user_error_page_unittest.cc", |
48 ] | 56 ] |
49 deps = [ | 57 deps = [ |
50 ":supervised_user_error_page", | 58 ":supervised_user_error_page", |
51 "//base", | 59 "//base", |
52 "//base/test:test_support", | 60 "//base/test:test_support", |
53 "//components/resources", | 61 "//components/resources", |
54 "//components/strings", | 62 "//components/strings", |
55 "//testing/gmock", | 63 "//testing/gmock", |
56 "//testing/gtest", | 64 "//testing/gtest", |
57 "//ui/base", | 65 "//ui/base", |
58 ] | 66 ] |
59 } | 67 } |
OLD | NEW |