| 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 | 7 |
| 7 static_library("arc") { | 8 static_library("arc") { |
| 8 sources = [ | 9 sources = [ |
| 9 "notification/arc_notification_item.cc", | 10 "notification/arc_notification_item.cc", |
| 10 "notification/arc_notification_item.h", | 11 "notification/arc_notification_item.h", |
| 11 "notification/arc_notification_manager.cc", | 12 "notification/arc_notification_manager.cc", |
| 12 "notification/arc_notification_manager.h", | 13 "notification/arc_notification_manager.h", |
| 13 ] | 14 ] |
| 14 | 15 |
| 15 deps = [ | 16 deps = [ |
| 16 "//base", | 17 "//base", |
| 17 "//components/arc:arc_bindings", | 18 "//components/arc:arc_bindings", |
| 18 "//components/signin/core/account_id", | 19 "//components/signin/core/account_id", |
| 19 "//skia", | 20 "//skia", |
| 20 "//ui/gfx", | 21 "//ui/gfx", |
| 21 "//ui/message_center", | 22 "//ui/message_center", |
| 22 ] | 23 ] |
| 23 } | 24 } |
| 24 | 25 |
| 25 static_library("ui_arc_unittests") { | 26 test("ui_arc_unittests") { |
| 26 testonly = true | 27 testonly = true |
| 27 sources = [ | 28 sources = [ |
| 28 "notification/arc_notification_manager_unittest.cc", | 29 "notification/arc_notification_manager_unittest.cc", |
| 29 "test/run_all_unittests.cc", | 30 "test/run_all_unittests.cc", |
| 30 ] | 31 ] |
| 31 | 32 |
| 32 deps = [ | 33 deps = [ |
| 33 ":arc", | 34 ":arc", |
| 34 "//base", | 35 "//base", |
| 35 "//base/test:test_support", | 36 "//base/test:test_support", |
| 36 "//components/arc:arc_test_support", | 37 "//components/arc:arc_test_support", |
| 37 "//mojo/edk/system", | 38 "//mojo/edk/system", |
| 38 "//ui/message_center:test_support", | 39 "//ui/message_center:test_support", |
| 39 ] | 40 ] |
| 40 } | 41 } |
| OLD | NEW |