Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: ui/arc/BUILD.gn

Issue 2053083002: Build fixes for linux desktop CrOS builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/minigbm/BUILD.gn ('k') | ui/keyboard/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « third_party/minigbm/BUILD.gn ('k') | ui/keyboard/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698