| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("arc") { | 8 static_library("arc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "notification/arc_custom_notification_view.cc", | 10 "notification/arc_custom_notification_view.cc", |
| 11 "notification/arc_custom_notification_view.h", | 11 "notification/arc_custom_notification_view.h", |
| 12 "notification/arc_notification_delegate.cc", | 12 "notification/arc_notification_delegate.cc", |
| 13 "notification/arc_notification_delegate.h", | 13 "notification/arc_notification_delegate.h", |
| 14 "notification/arc_notification_item.h", | 14 "notification/arc_notification_item.h", |
| 15 "notification/arc_notification_item_impl.cc", | 15 "notification/arc_notification_item_impl.cc", |
| 16 "notification/arc_notification_item_impl.h", | 16 "notification/arc_notification_item_impl.h", |
| 17 "notification/arc_notification_manager.cc", | 17 "notification/arc_notification_manager.cc", |
| 18 "notification/arc_notification_manager.h", | 18 "notification/arc_notification_manager.h", |
| 19 "notification/arc_notification_surface_manager.cc", | 19 "notification/arc_notification_surface_manager.cc", |
| 20 "notification/arc_notification_surface_manager.h", | 20 "notification/arc_notification_surface_manager.h", |
| 21 "notification/arc_notification_view.cc", |
| 22 "notification/arc_notification_view.h", |
| 21 ] | 23 ] |
| 22 | 24 |
| 23 deps = [ | 25 deps = [ |
| 24 "//ash", | 26 "//ash", |
| 25 "//base", | 27 "//base", |
| 26 "//components/arc:arc_base", | 28 "//components/arc:arc_base", |
| 27 "//components/exo", | 29 "//components/exo", |
| 28 "//components/signin/core/account_id", | 30 "//components/signin/core/account_id", |
| 29 "//mojo/common:common_base", | 31 "//mojo/common:common_base", |
| 30 "//skia", | 32 "//skia", |
| 31 "//ui/accessibility", | 33 "//ui/accessibility", |
| 32 "//ui/aura", | 34 "//ui/aura", |
| 33 "//ui/base", | 35 "//ui/base", |
| 34 "//ui/compositor", | 36 "//ui/compositor", |
| 35 "//ui/display", | 37 "//ui/display", |
| 36 "//ui/events", | 38 "//ui/events", |
| 37 "//ui/gfx", | 39 "//ui/gfx", |
| 38 "//ui/message_center", | 40 "//ui/message_center", |
| 39 "//ui/resources", | 41 "//ui/resources", |
| 40 "//ui/strings", | 42 "//ui/strings", |
| 41 "//ui/views", | 43 "//ui/views", |
| 42 "//ui/wm", | 44 "//ui/wm", |
| 43 ] | 45 ] |
| 44 } | 46 } |
| 45 | 47 |
| 46 test("ui_arc_unittests") { | 48 test("ui_arc_unittests") { |
| 47 testonly = true | 49 testonly = true |
| 48 sources = [ | 50 sources = [ |
| 49 "notification/arc_notification_manager_unittest.cc", | 51 "notification/arc_notification_manager_unittest.cc", |
| 52 "notification/arc_notification_view_unittest.cc", |
| 50 "test/run_all_unittests.cc", | 53 "test/run_all_unittests.cc", |
| 51 ] | 54 ] |
| 52 | 55 |
| 53 deps = [ | 56 deps = [ |
| 54 ":arc", | 57 ":arc", |
| 55 "//base", | 58 "//base", |
| 56 "//base/test:test_support", | 59 "//base/test:test_support", |
| 57 "//components/arc:arc_test_support", | 60 "//components/arc:arc_test_support", |
| 58 "//mojo/edk/system", | 61 "//mojo/edk/system", |
| 59 "//testing/gtest", | 62 "//testing/gtest", |
| 63 "//ui/base:test_support", |
| 64 "//ui/base/ime", |
| 65 "//ui/events", |
| 66 "//ui/events:test_support", |
| 67 "//ui/gl:test_support", |
| 60 "//ui/message_center:test_support", | 68 "//ui/message_center:test_support", |
| 69 "//ui/views", |
| 70 "//ui/views:test_support", |
| 61 ] | 71 ] |
| 62 } | 72 } |
| OLD | NEW |