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 component("captive_portal") { | 5 component("captive_portal") { |
6 sources = [ | 6 sources = [ |
7 "captive_portal_detector.cc", | 7 "captive_portal_detector.cc", |
8 "captive_portal_detector.h", | 8 "captive_portal_detector.h", |
9 "captive_portal_types.cc", | 9 "captive_portal_types.cc", |
10 "captive_portal_types.h", | 10 "captive_portal_types.h", |
(...skipping 15 matching lines...) Expand all Loading... |
26 "captive_portal_testing_utils.h", | 26 "captive_portal_testing_utils.h", |
27 ] | 27 ] |
28 | 28 |
29 deps = [ | 29 deps = [ |
30 ":captive_portal", | 30 ":captive_portal", |
31 "//base", | 31 "//base", |
32 "//net", | 32 "//net", |
33 "//url", | 33 "//url", |
34 ] | 34 ] |
35 } | 35 } |
| 36 |
| 37 source_set("unit_tests") { |
| 38 sources = [ |
| 39 "captive_portal_detector_unittest.cc", |
| 40 ] |
| 41 |
| 42 deps = [ |
| 43 ":captive_portal", |
| 44 "//testing/gtest", |
| 45 ] |
| 46 } |
OLD | NEW |