| 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", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "window_properties.cc", | 29 "window_properties.cc", |
| 30 "window_properties.h", | 30 "window_properties.h", |
| 31 "window_style.cc", | 31 "window_style.cc", |
| 32 "window_style.h", | 32 "window_style.h", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 defines = [ "ASH_PUBLIC_IMPLEMENTATION" ] | 35 defines = [ "ASH_PUBLIC_IMPLEMENTATION" ] |
| 36 | 36 |
| 37 deps = [ | 37 deps = [ |
| 38 "//mojo/common:common_custom_types", | 38 "//mojo/common:common_custom_types", |
| 39 "//services/ui/public/interfaces", |
| 39 "//skia/public/interfaces", | 40 "//skia/public/interfaces", |
| 40 "//ui/aura", | 41 "//ui/aura", |
| 41 "//ui/views", | 42 "//ui/views", |
| 42 "//ui/views/mus", | 43 "//ui/views/mus", |
| 43 ] | 44 ] |
| 44 | 45 |
| 45 public_deps = [ | 46 public_deps = [ |
| 46 "//ash/public/interfaces:interfaces_internal", | 47 "//ash/public/interfaces:interfaces_internal", |
| 47 "//base", | 48 "//base", |
| 48 "//ui/gfx", | 49 "//ui/gfx", |
| 49 ] | 50 ] |
| 50 | 51 |
| 51 allow_circular_includes_from = | 52 allow_circular_includes_from = |
| 52 [ "//ash/public/interfaces:interfaces_internal" ] | 53 [ "//ash/public/interfaces:interfaces_internal" ] |
| 53 } | 54 } |
| 54 | 55 |
| 55 source_set("unit_tests") { | 56 source_set("unit_tests") { |
| 56 testonly = true | 57 testonly = true |
| 57 sources = [ | 58 sources = [ |
| 58 "shelf_struct_traits_unittest.cc", | 59 "shelf_struct_traits_unittest.cc", |
| 59 ] | 60 ] |
| 60 | 61 |
| 61 deps = [ | 62 deps = [ |
| 62 ":ash_public_cpp", | 63 ":ash_public_cpp", |
| 63 "//base", | 64 "//base", |
| 64 "//testing/gtest", | 65 "//testing/gtest", |
| 65 "//ui/gfx:test_support", | 66 "//ui/gfx:test_support", |
| 66 ] | 67 ] |
| 67 } | 68 } |
| OLD | NEW |