OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 import("//build/config/ui.gni") | |
6 | |
7 static_library("arc") { | |
8 sources = [ | |
9 "notification/arc_notification_item.cc", | |
10 "notification/arc_notification_item.h", | |
11 "notification/arc_notification_manager.cc", | |
12 "notification/arc_notification_manager.h", | |
13 ] | |
14 | |
15 deps = [ | |
16 "//base", | |
17 "//components/arc:arc_bindings", | |
18 "//components/signin/core/account_id", | |
19 "//third_party/WebKit/public:blink_headers", | |
sky
2016/01/06 22:02:36
Having this code depend upon webkit is unfortunate
yoshiki
2016/01/08 10:32:58
I removed the dependency on webkit.
| |
20 "//ui/gfx", | |
21 "//ui/message_center", | |
22 ] | |
23 } | |
OLD | NEW |