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("core") { | 5 # GYP version: components/ntp_snippets.gypi:ntp_snippets |
6 output_name = "device_core" | 6 source_set("ntp_snippets") { |
7 | |
8 sources = [ | 7 sources = [ |
9 "device_client.cc", | 8 "ntp_snippets_service.cc", |
10 "device_client.h", | 9 "ntp_snippets_service.h", |
11 "device_monitor_win.cc", | |
12 "device_monitor_win.h", | |
13 ] | 10 ] |
14 | 11 |
15 defines = [ "DEVICE_CORE_IMPLEMENTATION" ] | |
16 | |
17 public_deps = [ | 12 public_deps = [ |
18 "//base", | 13 "//base", |
| 14 "//components/keyed_service/core", |
19 ] | 15 ] |
20 } | 16 } |
OLD | NEW |