OLD | NEW |
(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 } |
OLD | NEW |