| 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", |
| 11 "notification/arc_custom_notification_item.h", |
| 12 "notification/arc_custom_notification_view.cc", |
| 13 "notification/arc_custom_notification_view.h", |
| 10 "notification/arc_notification_item.cc", | 14 "notification/arc_notification_item.cc", |
| 11 "notification/arc_notification_item.h", | 15 "notification/arc_notification_item.h", |
| 12 "notification/arc_notification_manager.cc", | 16 "notification/arc_notification_manager.cc", |
| 13 "notification/arc_notification_manager.h", | 17 "notification/arc_notification_manager.h", |
| 14 ] | 18 ] |
| 15 | 19 |
| 16 deps = [ | 20 deps = [ |
| 17 "//base", | 21 "//base", |
| 18 "//components/arc:arc_bindings", | 22 "//components/arc:arc_bindings", |
| 19 "//components/signin/core/account_id", | 23 "//components/signin/core/account_id", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 | 36 |
| 33 deps = [ | 37 deps = [ |
| 34 ":arc", | 38 ":arc", |
| 35 "//base", | 39 "//base", |
| 36 "//base/test:test_support", | 40 "//base/test:test_support", |
| 37 "//components/arc:arc_test_support", | 41 "//components/arc:arc_test_support", |
| 38 "//mojo/edk/system", | 42 "//mojo/edk/system", |
| 39 "//ui/message_center:test_support", | 43 "//ui/message_center:test_support", |
| 40 ] | 44 ] |
| 41 } | 45 } |
| OLD | NEW |