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_mac.mm", |
10 "unhandled_keyboard_event_handler_win.cc", | 10 "unhandled_keyboard_event_handler_win.cc", |
11 "web_contents_set_background_color.cc", | |
12 "web_contents_set_background_color.h", | |
13 "web_dialog_view.cc", | 11 "web_dialog_view.cc", |
14 "web_dialog_view.h", | 12 "web_dialog_view.h", |
15 "webview.cc", | 13 "webview.cc", |
16 "webview.h", | 14 "webview.h", |
17 "webview_export.h", | 15 "webview_export.h", |
18 ] | 16 ] |
19 | 17 |
20 defines = [ "WEBVIEW_IMPLEMENTATION" ] | 18 defines = [ "WEBVIEW_IMPLEMENTATION" ] |
21 | 19 |
22 deps = [ | 20 deps = [ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "//skia", | 62 "//skia", |
65 "//testing/gtest", | 63 "//testing/gtest", |
66 "//ui/base", | 64 "//ui/base", |
67 "//ui/events", | 65 "//ui/events", |
68 "//ui/gfx", | 66 "//ui/gfx", |
69 "//ui/gfx/geometry", | 67 "//ui/gfx/geometry", |
70 "//ui/views", | 68 "//ui/views", |
71 "//ui/views:test_support", | 69 "//ui/views:test_support", |
72 ] | 70 ] |
73 } | 71 } |
OLD | NEW |