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