| OLD | NEW |
| (Empty) |
| 1 # Copyright 2016 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 import("//build/config/features.gni") | |
| 6 | |
| 7 source_set("cpp") { | |
| 8 sources = [ | |
| 9 "power_monitor_broadcast_source.cc", | |
| 10 "power_monitor_broadcast_source.h", | |
| 11 ] | |
| 12 | |
| 13 deps = [ | |
| 14 "//base", | |
| 15 "//mojo/public/cpp/bindings", | |
| 16 "//services/service_manager/public/cpp", | |
| 17 ] | |
| 18 | |
| 19 public_deps = [ | |
| 20 "//device/power_monitor/public/interfaces", | |
| 21 ] | |
| 22 } | |
| OLD | NEW |