OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 static_library("tracked") { | |
6 sources = [ | |
7 "configuration.cc", | |
8 "configuration.h", | |
9 "pref_names.cc", | |
10 "pref_names.h", | |
11 "tracked_preference_histogram_names.cc", | |
12 "tracked_preference_histogram_names.h", | |
13 ] | |
14 | |
15 if (is_win || is_mac) { | |
16 sources -= [ "device_id_stub.cc" ] | |
gab
2017/03/29 16:27:56
device_id_stub.cc isn't in the public list so this
Sam McNally
2017/03/30 02:23:22
Done.
| |
17 } | |
18 | |
19 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
20 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | |
gab
2017/03/29 16:27:56
Maybe this can go away as well?
Sam McNally
2017/03/30 02:23:22
Done.
| |
21 | |
22 public_deps = [ | |
23 "//services/preferences/public/interfaces", | |
24 ] | |
25 | |
26 deps = [ | |
27 "//base:base", | |
28 "//components/pref_registry", | |
29 "//components/prefs", | |
30 "//crypto:crypto", | |
gab
2017/03/29 16:27:56
Why is crypto needed? Think you only need it in no
Sam McNally
2017/03/30 02:23:22
Done.
| |
31 ] | |
32 } | |
33 | |
34 static_library("test_support") { | |
35 testonly = true | |
36 sources = [ | |
37 "mock_validation_delegate.cc", | |
38 "mock_validation_delegate.h", | |
39 ] | |
40 | |
41 deps = [ | |
42 "//base:base", | |
43 "//services/preferences/public/interfaces", | |
44 ] | |
45 } | |
OLD | NEW |