| 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_pref_names.cc", | 8 "ash_pref_names.cc", |
| 9 "ash_pref_names.h", | 9 "ash_pref_names.h", |
| 10 "ash_public_export.h", | 10 "ash_public_export.h", |
| 11 "ash_typography.cc", | 11 "ash_typography.cc", |
| 12 "ash_typography.h", | 12 "ash_typography.h", |
| 13 "config.h", | 13 "config.h", |
| 14 "mus_property_mirror_ash.cc", | 14 "mus_property_mirror_ash.cc", |
| 15 "mus_property_mirror_ash.h", | 15 "mus_property_mirror_ash.h", |
| 16 "remote_shelf_item_delegate.cc", | 16 "remote_shelf_item_delegate.cc", |
| 17 "remote_shelf_item_delegate.h", | 17 "remote_shelf_item_delegate.h", |
| 18 "session_types.h", | 18 "session_types.h", |
| 19 "shelf_item.cc", | 19 "shelf_item.cc", |
| 20 "shelf_item.h", | 20 "shelf_item.h", |
| 21 "shelf_item_delegate.cc", | 21 "shelf_item_delegate.cc", |
| 22 "shelf_item_delegate.h", | 22 "shelf_item_delegate.h", |
| 23 "shelf_model.cc", |
| 24 "shelf_model.h", |
| 25 "shelf_model_observer.h", |
| 23 "shelf_types.cc", | 26 "shelf_types.cc", |
| 24 "shelf_types.h", | 27 "shelf_types.h", |
| 25 "shell_window_ids.cc", | 28 "shell_window_ids.cc", |
| 26 "shell_window_ids.h", | 29 "shell_window_ids.h", |
| 27 "window_pin_type.cc", | 30 "window_pin_type.cc", |
| 28 "window_pin_type.h", | 31 "window_pin_type.h", |
| 29 "window_properties.cc", | 32 "window_properties.cc", |
| 30 "window_properties.h", | 33 "window_properties.h", |
| 31 "window_style.cc", | 34 "window_style.cc", |
| 32 "window_style.h", | 35 "window_style.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 48 "//ui/gfx", | 51 "//ui/gfx", |
| 49 ] | 52 ] |
| 50 | 53 |
| 51 allow_circular_includes_from = | 54 allow_circular_includes_from = |
| 52 [ "//ash/public/interfaces:interfaces_internal" ] | 55 [ "//ash/public/interfaces:interfaces_internal" ] |
| 53 } | 56 } |
| 54 | 57 |
| 55 source_set("unit_tests") { | 58 source_set("unit_tests") { |
| 56 testonly = true | 59 testonly = true |
| 57 sources = [ | 60 sources = [ |
| 61 "shelf_model_unittest.cc", |
| 58 "shelf_struct_traits_unittest.cc", | 62 "shelf_struct_traits_unittest.cc", |
| 59 ] | 63 ] |
| 60 | 64 |
| 61 deps = [ | 65 deps = [ |
| 62 ":ash_public_cpp", | 66 ":ash_public_cpp", |
| 63 "//base", | 67 "//base", |
| 64 "//testing/gtest", | 68 "//testing/gtest", |
| 65 "//ui/gfx:test_support", | 69 "//ui/gfx:test_support", |
| 66 ] | 70 ] |
| 67 } | 71 } |
| OLD | NEW |