| Index: ui/views/controls/webview/BUILD.gn
|
| diff --git a/ui/views/controls/webview/BUILD.gn b/ui/views/controls/webview/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4998cc30822779cbef4699069c657f89630e1139
|
| --- /dev/null
|
| +++ b/ui/views/controls/webview/BUILD.gn
|
| @@ -0,0 +1,38 @@
|
| +# Copyright 2014 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +component("webview") {
|
| + sources = [
|
| + "unhandled_keyboard_event_handler.cc",
|
| + "unhandled_keyboard_event_handler.h",
|
| + "unhandled_keyboard_event_handler_linux.cc",
|
| + "unhandled_keyboard_event_handler_win.cc",
|
| + "web_dialog_view.cc",
|
| + "web_dialog_view.h",
|
| + "webview.cc",
|
| + "webview.h",
|
| + "webview_export.h",
|
| + ]
|
| +
|
| + defines = [ "WEBVIEW_IMPLEMENTATION" ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//base:i18n",
|
| + "//base/third_party/dynamic_annotations",
|
| + "//content/public/browser",
|
| + "//skia",
|
| + "//ui/base",
|
| + "//ui/events",
|
| + "//ui/gfx",
|
| + "//ui/gfx/geometry",
|
| + "//ui/web_dialogs",
|
| + "//ui/views",
|
| + "//url",
|
| + ]
|
| +
|
| + forward_dependent_configs_from = [
|
| + "//ui/views",
|
| + ]
|
| +}
|
|
|