| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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("tether") { | 5 static_library("tether") { |
| 6 sources = [ | 6 sources = [ |
| 7 "fake_tether_service.cc", |
| 8 "fake_tether_service.h", |
| 7 "tether_service.cc", | 9 "tether_service.cc", |
| 8 "tether_service.h", | 10 "tether_service.h", |
| 9 "tether_service_factory.cc", | 11 "tether_service_factory.cc", |
| 10 "tether_service_factory.h", | 12 "tether_service_factory.h", |
| 11 ] | 13 ] |
| 12 | 14 |
| 13 deps = [ | 15 deps = [ |
| 14 "//base", | 16 "//base", |
| 15 "//components/prefs", | 17 "//components/prefs", |
| 16 ] | 18 ] |
| 17 } | 19 } |
| OLD | NEW |