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