| 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 # C++ headers and sources that can be used outside ash. | 5 # C++ headers and sources that can be used outside ash. |
| 6 component("ash_public_cpp") { | 6 component("ash_public_cpp") { |
| 7 sources = [ | 7 sources = [ |
| 8 "ash_public_export.h", | 8 "ash_public_export.h", |
| 9 "mus_property_mirror_ash.cc", | 9 "mus_property_mirror_ash.cc", |
| 10 "mus_property_mirror_ash.h", | 10 "mus_property_mirror_ash.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 } | 41 } |
| 42 | 42 |
| 43 source_set("unit_tests") { | 43 source_set("unit_tests") { |
| 44 testonly = true | 44 testonly = true |
| 45 sources = [ | 45 sources = [ |
| 46 "shelf_struct_traits_unittest.cc", | 46 "shelf_struct_traits_unittest.cc", |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 deps = [ | 49 deps = [ |
| 50 ":ash_public_cpp", | 50 ":ash_public_cpp", |
| 51 | |
| 52 # TODO(crbug.com/702397): Rely on :ash_public_cpp for this instead. | |
| 53 "//ash/public/interfaces:interfaces_internal", | |
| 54 "//base", | 51 "//base", |
| 55 "//testing/gtest", | 52 "//testing/gtest", |
| 56 "//ui/gfx:test_support", | 53 "//ui/gfx:test_support", |
| 57 ] | 54 ] |
| 58 } | 55 } |
| OLD | NEW |