| 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_export.h", | 9 "captive_portal_export.h", |
| 10 "captive_portal_types.cc", | 10 "captive_portal_types.cc", |
| 11 "captive_portal_types.h", | 11 "captive_portal_types.h", |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 defines = [ "CAPTIVE_PORTAL_IMPLEMENTATION" ] | 14 defines = [ "CAPTIVE_PORTAL_IMPLEMENTATION" ] |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 "//base", | 17 "//base", |
| 18 "//components/data_use_measurement/core", |
| 18 "//net", | 19 "//net", |
| 19 "//url", | 20 "//url", |
| 20 ] | 21 ] |
| 21 } | 22 } |
| 22 | 23 |
| 23 static_library("test_support") { | 24 static_library("test_support") { |
| 24 testonly = true | 25 testonly = true |
| 25 sources = [ | 26 sources = [ |
| 26 "captive_portal_testing_utils.cc", | 27 "captive_portal_testing_utils.cc", |
| 27 "captive_portal_testing_utils.h", | 28 "captive_portal_testing_utils.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 42 ] | 43 ] |
| 43 | 44 |
| 44 deps = [ | 45 deps = [ |
| 45 ":captive_portal", | 46 ":captive_portal", |
| 46 ":test_support", | 47 ":test_support", |
| 47 "//base", | 48 "//base", |
| 48 "//net:test_support", | 49 "//net:test_support", |
| 49 "//testing/gtest", | 50 "//testing/gtest", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| OLD | NEW |