OLD | NEW |
---|---|
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 source_set("common") { | 5 static_library("recorder") { |
sky
2016/10/07 16:17:38
IMO I would move this code into components/rappor
Alexei Svitkine (slow)
2016/10/07 16:31:58
Agree, I don't think it's worth having a separate
nigeltao1
2016/10/11 23:44:55
Done.
| |
6 sources = [ | 6 sources = [ |
7 "client_util.cc", | 7 "rappor_recorder_impl.cc", |
8 "client_util.h", | 8 "rappor_recorder_impl.h", |
9 "switches.cc", | 9 ] |
10 "switches.h", | 10 |
11 public_deps = [ | |
12 "//base", | |
13 "//components/rappor/public/interfaces", | |
11 ] | 14 ] |
12 | 15 |
13 deps = [ | 16 deps = [ |
14 "//base", | 17 "//components/rappor", |
15 "//mojo/edk/system", | |
16 "//mojo/public/cpp/bindings", | 18 "//mojo/public/cpp/bindings", |
17 "//mojo/public/cpp/system", | |
18 ] | |
19 | |
20 public_deps = [ | |
21 "//services/shell/public/interfaces", | |
22 ] | 19 ] |
23 } | 20 } |
OLD | NEW |