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_mac.mm", |
9 "unhandled_keyboard_event_handler_win.cc", | 10 "unhandled_keyboard_event_handler_win.cc", |
10 "web_dialog_view.cc", | 11 "web_dialog_view.cc", |
11 "web_dialog_view.h", | 12 "web_dialog_view.h", |
12 "webview.cc", | 13 "webview.cc", |
13 "webview.h", | 14 "webview.h", |
14 "webview_export.h", | 15 "webview_export.h", |
15 ] | 16 ] |
16 | 17 |
17 defines = [ "WEBVIEW_IMPLEMENTATION" ] | 18 defines = [ "WEBVIEW_IMPLEMENTATION" ] |
18 | 19 |
19 deps = [ | 20 deps = [ |
20 "//base:i18n", | 21 "//base:i18n", |
21 "//base/third_party/dynamic_annotations", | 22 "//base/third_party/dynamic_annotations", |
22 "//ipc", | 23 "//ipc", |
23 "//skia", | 24 "//skia", |
24 "//ui/accessibility", | 25 "//ui/accessibility", |
25 "//ui/base", | 26 "//ui/base", |
26 "//ui/content_accelerators", | 27 "//ui/content_accelerators", |
27 "//ui/events", | 28 "//ui/events", |
28 "//ui/events:events_base", | 29 "//ui/events:events_base", |
29 "//ui/web_dialogs", | 30 "//ui/web_dialogs", |
30 "//url", | 31 "//url", |
31 ] | 32 ] |
32 | 33 |
33 public_deps = [ | 34 public_deps = [ |
34 "//base", | 35 "//base", |
35 "//content/public/browser", | 36 "//content/public/browser", |
36 "//ui/aura", | |
37 "//ui/gfx", | 37 "//ui/gfx", |
38 "//ui/gfx/geometry", | 38 "//ui/gfx/geometry", |
39 "//ui/views", | 39 "//ui/views", |
40 ] | 40 ] |
41 | 41 |
42 if (is_linux || is_android) { | 42 if (is_linux || is_android) { |
43 sources += [ "unhandled_keyboard_event_handler_default.cc" ] | 43 sources += [ "unhandled_keyboard_event_handler_default.cc" ] |
44 } | 44 } |
45 } | 45 } |
46 | 46 |
(...skipping 15 matching lines...) Expand all Loading... |
62 "//skia", | 62 "//skia", |
63 "//testing/gtest", | 63 "//testing/gtest", |
64 "//ui/base", | 64 "//ui/base", |
65 "//ui/events", | 65 "//ui/events", |
66 "//ui/gfx", | 66 "//ui/gfx", |
67 "//ui/gfx/geometry", | 67 "//ui/gfx/geometry", |
68 "//ui/views", | 68 "//ui/views", |
69 "//ui/views:test_support", | 69 "//ui/views:test_support", |
70 ] | 70 ] |
71 } | 71 } |
OLD | NEW |