| 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_notification_content_view.cc", | 10 "notification/arc_notification_content_view.cc", |
| 11 "notification/arc_notification_content_view.h", | 11 "notification/arc_notification_content_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.h", |
| 20 "notification/arc_notification_surface_impl.cc", |
| 21 "notification/arc_notification_surface_impl.h", |
| 19 "notification/arc_notification_surface_manager.cc", | 22 "notification/arc_notification_surface_manager.cc", |
| 20 "notification/arc_notification_surface_manager.h", | 23 "notification/arc_notification_surface_manager.h", |
| 24 "notification/arc_notification_surface_manager_impl.cc", |
| 25 "notification/arc_notification_surface_manager_impl.h", |
| 21 "notification/arc_notification_view.cc", | 26 "notification/arc_notification_view.cc", |
| 22 "notification/arc_notification_view.h", | 27 "notification/arc_notification_view.h", |
| 23 ] | 28 ] |
| 24 | 29 |
| 25 deps = [ | 30 deps = [ |
| 26 "//ash", | 31 "//ash", |
| 27 "//base", | 32 "//base", |
| 28 "//components/arc:arc_base", | 33 "//components/arc:arc_base", |
| 29 "//components/exo", | 34 "//components/exo", |
| 30 "//components/signin/core/account_id", | 35 "//components/signin/core/account_id", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 41 "//ui/resources", | 46 "//ui/resources", |
| 42 "//ui/strings", | 47 "//ui/strings", |
| 43 "//ui/views", | 48 "//ui/views", |
| 44 "//ui/wm", | 49 "//ui/wm", |
| 45 ] | 50 ] |
| 46 } | 51 } |
| 47 | 52 |
| 48 test("ui_arc_unittests") { | 53 test("ui_arc_unittests") { |
| 49 testonly = true | 54 testonly = true |
| 50 sources = [ | 55 sources = [ |
| 56 "notification/arc_notification_content_view_unittest.cc", |
| 51 "notification/arc_notification_manager_unittest.cc", | 57 "notification/arc_notification_manager_unittest.cc", |
| 52 "notification/arc_notification_view_unittest.cc", | 58 "notification/arc_notification_view_unittest.cc", |
| 53 "test/run_all_unittests.cc", | 59 "test/run_all_unittests.cc", |
| 54 ] | 60 ] |
| 55 | 61 |
| 56 deps = [ | 62 deps = [ |
| 57 ":arc", | 63 ":arc", |
| 58 "//base", | 64 "//base", |
| 59 "//base/test:test_support", | 65 "//base/test:test_support", |
| 60 "//components/arc:arc_test_support", | 66 "//components/arc:arc_test_support", |
| 61 "//mojo/edk/system", | 67 "//mojo/edk/system", |
| 62 "//testing/gtest", | 68 "//testing/gtest", |
| 69 "//ui/aura:test_support", |
| 63 "//ui/base:test_support", | 70 "//ui/base:test_support", |
| 64 "//ui/base/ime", | |
| 65 "//ui/events", | |
| 66 "//ui/events:test_support", | 71 "//ui/events:test_support", |
| 67 "//ui/gl:test_support", | 72 "//ui/gl:test_support", |
| 68 "//ui/message_center:test_support", | 73 "//ui/message_center:test_support", |
| 69 "//ui/views", | 74 "//ui/views", |
| 70 "//ui/views:test_support", | 75 "//ui/views:test_support", |
| 71 ] | 76 ] |
| 77 |
| 78 data_deps = [ |
| 79 "//ui/resources:ui_test_pak_data", |
| 80 ] |
| 72 } | 81 } |
| OLD | NEW |