OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 component("webview") { | 5 component("webview") { |
6 sources = [ | 6 sources = [ |
7 "unhandled_keyboard_event_handler.cc", | 7 "unhandled_keyboard_event_handler.cc", |
8 "unhandled_keyboard_event_handler.h", | 8 "unhandled_keyboard_event_handler.h", |
9 "unhandled_keyboard_event_handler_linux.cc", | 9 "unhandled_keyboard_event_handler_linux.cc", |
| 10 "unhandled_keyboard_event_handler_mac.mm", |
10 "unhandled_keyboard_event_handler_win.cc", | 11 "unhandled_keyboard_event_handler_win.cc", |
11 "web_dialog_view.cc", | 12 "web_dialog_view.cc", |
12 "web_dialog_view.h", | 13 "web_dialog_view.h", |
13 "webview.cc", | 14 "webview.cc", |
14 "webview.h", | 15 "webview.h", |
15 "webview_export.h", | 16 "webview_export.h", |
16 ] | 17 ] |
17 | 18 |
18 defines = [ "WEBVIEW_IMPLEMENTATION" ] | 19 defines = [ "WEBVIEW_IMPLEMENTATION" ] |
19 | 20 |
20 deps = [ | 21 deps = [ |
21 "//base:i18n", | 22 "//base:i18n", |
22 "//base/third_party/dynamic_annotations", | 23 "//base/third_party/dynamic_annotations", |
23 "//ipc", | 24 "//ipc", |
24 "//skia", | 25 "//skia", |
25 "//ui/accessibility", | 26 "//ui/accessibility", |
26 "//ui/base", | 27 "//ui/base", |
27 "//ui/content_accelerators", | 28 "//ui/content_accelerators", |
28 "//ui/events", | 29 "//ui/events", |
29 "//ui/events:events_base", | 30 "//ui/events:events_base", |
30 "//ui/web_dialogs", | 31 "//ui/web_dialogs", |
31 "//url", | 32 "//url", |
32 ] | 33 ] |
33 | 34 |
34 public_deps = [ | 35 public_deps = [ |
35 "//base", | 36 "//base", |
36 "//content/public/browser", | 37 "//content/public/browser", |
37 "//ui/aura", | |
38 "//ui/gfx", | 38 "//ui/gfx", |
39 "//ui/gfx/geometry", | 39 "//ui/gfx/geometry", |
40 "//ui/views", | 40 "//ui/views", |
41 ] | 41 ] |
42 } | 42 } |
43 | 43 |
44 source_set("test_support") { | 44 source_set("test_support") { |
45 testonly = true | 45 testonly = true |
46 sources = [ | 46 sources = [ |
47 "../../test/webview_test_helper.cc", | 47 "../../test/webview_test_helper.cc", |
(...skipping 11 matching lines...) Expand all Loading... |
59 "//skia", | 59 "//skia", |
60 "//testing/gtest", | 60 "//testing/gtest", |
61 "//ui/base", | 61 "//ui/base", |
62 "//ui/events", | 62 "//ui/events", |
63 "//ui/gfx", | 63 "//ui/gfx", |
64 "//ui/gfx/geometry", | 64 "//ui/gfx/geometry", |
65 "//ui/views", | 65 "//ui/views", |
66 "//ui/views:test_support", | 66 "//ui/views:test_support", |
67 ] | 67 ] |
68 } | 68 } |
OLD | NEW |