| 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:ash", |
| 23 "//base", | 24 "//base", |
| 25 "//components/arc:arc_base", |
| 24 "//components/arc:arc_bindings", | 26 "//components/arc:arc_bindings", |
| 27 "//components/arc:arc_bitmap", |
| 28 "//components/exo:exo", |
| 25 "//components/signin/core/account_id", | 29 "//components/signin/core/account_id", |
| 26 "//skia", | 30 "//skia", |
| 31 "//ui/base", |
| 27 "//ui/gfx", | 32 "//ui/gfx", |
| 28 "//ui/message_center", | 33 "//ui/message_center", |
| 34 "//ui/resources", |
| 35 "//ui/strings", |
| 36 "//ui/views", |
| 29 ] | 37 ] |
| 30 } | 38 } |
| 31 | 39 |
| 32 test("ui_arc_unittests") { | 40 test("ui_arc_unittests") { |
| 33 testonly = true | 41 testonly = true |
| 34 sources = [ | 42 sources = [ |
| 35 "notification/arc_notification_manager_unittest.cc", | 43 "notification/arc_notification_manager_unittest.cc", |
| 36 "test/run_all_unittests.cc", | 44 "test/run_all_unittests.cc", |
| 37 ] | 45 ] |
| 38 | 46 |
| 39 deps = [ | 47 deps = [ |
| 40 ":arc", | 48 ":arc", |
| 41 "//base", | 49 "//base", |
| 42 "//base/test:test_support", | 50 "//base/test:test_support", |
| 43 "//components/arc:arc_test_support", | 51 "//components/arc:arc_test_support", |
| 44 "//mojo/edk/system", | 52 "//mojo/edk/system", |
| 53 "//testing/gtest", |
| 45 "//ui/message_center:test_support", | 54 "//ui/message_center:test_support", |
| 46 ] | 55 ] |
| 47 } | 56 } |
| OLD | NEW |