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 component("ownership") { | |
6 sources = [ | |
7 "owner_key_util.cc", | |
8 "owner_key_util.h", | |
9 ] | |
10 | |
11 if (is_chromeos) { | |
12 sources += [ | |
13 "owner_key_util_chromeos.cc", | |
14 "owner_key_util_chromeos.h", | |
15 ] | |
16 } | |
17 | |
18 defines = [ | |
19 "OWNERSHIP_IMPLEMENTATION" | |
20 ] | |
21 | |
22 deps = [ | |
23 "//base", | |
24 "//crypto", | |
25 "//net", | |
wtc
2014/08/25 19:41:50
The dependency on "//net" doesn't seem necessary.
ygorshenin1
2014/08/26 14:53:35
Done.
| |
26 ] | |
27 } | |
28 | |
29 source_set("unit_tests") { | |
30 sources = [] | |
31 if (is_chromeos) { | |
32 sources += ["owner_key_util_chromeos_unittest.cc" ] | |
33 } | |
34 | |
35 deps = [ | |
36 ":ownership", | |
37 "//testing/gtest", | |
38 ] | |
39 } | |
OLD | NEW |