| 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", |
| 11 "owner_key_util_impl.cc", | 11 "owner_key_util_impl.cc", |
| 12 "owner_key_util_impl.h", | 12 "owner_key_util_impl.h", |
| 13 "owner_settings_service.cc", |
| 14 "owner_settings_service.h", |
| 13 ] | 15 ] |
| 14 | 16 |
| 15 defines = [ | 17 defines = [ |
| 16 "OWNERSHIP_IMPLEMENTATION" | 18 "OWNERSHIP_IMPLEMENTATION" |
| 17 ] | 19 ] |
| 18 | 20 |
| 19 deps = [ | 21 deps = [ |
| 20 "//base", | 22 "//base", |
| 21 "//crypto", | 23 "//crypto", |
| 22 ] | 24 ] |
| 23 } | 25 } |
| 24 | 26 |
| 25 source_set("unit_tests") { | 27 source_set("unit_tests") { |
| 26 sources = ["owner_key_util_unittest.cc"] | 28 sources = ["owner_key_util_unittest.cc"] |
| 27 | 29 |
| 28 deps = [ | 30 deps = [ |
| 29 ":ownership", | 31 ":ownership", |
| 30 "//testing/gtest", | 32 "//testing/gtest", |
| 31 ] | 33 ] |
| 32 } | 34 } |
| OLD | NEW |