Chromium Code Reviews| 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", |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 "//ash:ash", | 23 "//ash:ash", |
| 24 "//base", | 24 "//base", |
| 25 "//components/arc:arc_base", | 25 "//components/arc:arc_base", |
| 26 "//components/arc:arc_bindings", | 26 "//components/arc:arc_bindings", |
| 27 "//components/arc:arc_bitmap", | 27 "//components/arc:arc_bitmap", |
| 28 "//components/exo:exo", | 28 "//components/exo:exo", |
| 29 "//components/signin/core/account_id", | 29 "//components/signin/core/account_id", |
| 30 "//skia", | 30 "//skia", |
| 31 "//ui/aura:aura", | 31 "//ui/aura:aura", |
| 32 "//ui/base", | 32 "//ui/base", |
| 33 "//ui/compositor:compositor", | |
|
sadrul
2016/08/10 03:26:39
Just //ui/compositor
Similarly, just //ui/display
xiyuan
2016/08/10 16:28:07
Done. Updated all except the //component/arc ones
| |
| 34 "//ui/display:display", | |
| 35 "//ui/events:events", | |
| 33 "//ui/gfx", | 36 "//ui/gfx", |
| 34 "//ui/message_center", | 37 "//ui/message_center", |
| 35 "//ui/resources", | 38 "//ui/resources", |
| 36 "//ui/strings", | 39 "//ui/strings", |
| 37 "//ui/views", | 40 "//ui/views", |
| 41 "//ui/wm:wm", | |
| 38 ] | 42 ] |
| 39 } | 43 } |
| 40 | 44 |
| 41 test("ui_arc_unittests") { | 45 test("ui_arc_unittests") { |
| 42 testonly = true | 46 testonly = true |
| 43 sources = [ | 47 sources = [ |
| 44 "notification/arc_notification_manager_unittest.cc", | 48 "notification/arc_notification_manager_unittest.cc", |
| 45 "test/run_all_unittests.cc", | 49 "test/run_all_unittests.cc", |
| 46 ] | 50 ] |
| 47 | 51 |
| 48 deps = [ | 52 deps = [ |
| 49 ":arc", | 53 ":arc", |
| 50 "//base", | 54 "//base", |
| 51 "//base/test:test_support", | 55 "//base/test:test_support", |
| 52 "//components/arc:arc_base", | 56 "//components/arc:arc_base", |
| 53 "//components/arc:arc_test_support", | 57 "//components/arc:arc_test_support", |
| 54 "//mojo/edk/system", | 58 "//mojo/edk/system", |
| 55 "//testing/gtest", | 59 "//testing/gtest", |
| 56 "//ui/message_center:test_support", | 60 "//ui/message_center:test_support", |
| 57 ] | 61 ] |
| 58 } | 62 } |
| OLD | NEW |