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("ownership") { | 5 component("ownership") { |
6 sources = [ | 6 sources = [ |
7 "mock_owner_key_util.cc", | 7 "mock_owner_key_util.cc", |
8 "mock_owner_key_util.h", | 8 "mock_owner_key_util.h", |
9 "owner_key_util.cc", | 9 "owner_key_util.cc", |
10 "owner_key_util.h", | 10 "owner_key_util.h", |
(...skipping 14 matching lines...) Expand all Loading... |
25 "//crypto", | 25 "//crypto", |
26 ] | 26 ] |
27 } | 27 } |
28 | 28 |
29 source_set("unit_tests") { | 29 source_set("unit_tests") { |
30 testonly = true | 30 testonly = true |
31 sources = [ | 31 sources = [ |
32 "owner_key_util_impl_unittest.cc", | 32 "owner_key_util_impl_unittest.cc", |
33 ] | 33 ] |
34 | 34 |
| 35 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 36 |
35 deps = [ | 37 deps = [ |
36 ":ownership", | 38 ":ownership", |
37 "//testing/gtest", | 39 "//testing/gtest", |
38 ] | 40 ] |
39 } | 41 } |
OLD | NEW |