| 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 "app_launch_id.cc", | |
| 9 "app_launch_id.h", | |
| 10 "ash_public_export.h", | 8 "ash_public_export.h", |
| 11 "config.h", | 9 "config.h", |
| 12 "mus_property_mirror_ash.cc", | 10 "mus_property_mirror_ash.cc", |
| 13 "mus_property_mirror_ash.h", | 11 "mus_property_mirror_ash.h", |
| 14 "session_types.h", | 12 "session_types.h", |
| 15 "shelf_item.cc", | 13 "shelf_item.cc", |
| 16 "shelf_item.h", | 14 "shelf_item.h", |
| 17 "shelf_item_delegate.cc", | 15 "shelf_item_delegate.cc", |
| 18 "shelf_item_delegate.h", | 16 "shelf_item_delegate.h", |
| 19 "shelf_types.cc", | 17 "shelf_types.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "shelf_struct_traits_unittest.cc", | 51 "shelf_struct_traits_unittest.cc", |
| 54 ] | 52 ] |
| 55 | 53 |
| 56 deps = [ | 54 deps = [ |
| 57 ":ash_public_cpp", | 55 ":ash_public_cpp", |
| 58 "//base", | 56 "//base", |
| 59 "//testing/gtest", | 57 "//testing/gtest", |
| 60 "//ui/gfx:test_support", | 58 "//ui/gfx:test_support", |
| 61 ] | 59 ] |
| 62 } | 60 } |
| OLD | NEW |