Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: ui/views/controls/webview/BUILD.gn

Issue 513313002: Fix most of the "gn check" errors in ui/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android GN build Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_win.cc", 10 "unhandled_keyboard_event_handler_win.cc",
11 "web_dialog_view.cc", 11 "web_dialog_view.cc",
12 "web_dialog_view.h", 12 "web_dialog_view.h",
13 "webview.cc", 13 "webview.cc",
14 "webview.h", 14 "webview.h",
15 "webview_export.h", 15 "webview_export.h",
16 ] 16 ]
17 17
18 defines = [ "WEBVIEW_IMPLEMENTATION" ] 18 defines = [ "WEBVIEW_IMPLEMENTATION" ]
19 19
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//base:i18n", 22 "//base:i18n",
23 "//base/third_party/dynamic_annotations", 23 "//base/third_party/dynamic_annotations",
24 "//content/public/browser", 24 "//content/public/browser",
25 "//skia", 25 "//skia",
26 "//ui/accessibility",
26 "//ui/base", 27 "//ui/base",
27 "//ui/events", 28 "//ui/events",
29 "//ui/events:events_base",
28 "//ui/gfx", 30 "//ui/gfx",
29 "//ui/gfx/geometry", 31 "//ui/gfx/geometry",
30 "//ui/web_dialogs", 32 "//ui/web_dialogs",
31 "//ui/views", 33 "//ui/views",
32 "//url", 34 "//url",
33 ] 35 ]
34 36
35 forward_dependent_configs_from = [ 37 forward_dependent_configs_from = [
36 "//ui/views", 38 "//ui/views",
37 ] 39 ]
38 } 40 }
39 41
40 source_set("test_support") { 42 source_set("test_support") {
41 sources = [ 43 sources = [
42 "../../test/webview_test_helper.cc", 44 "../../test/webview_test_helper.cc",
43 "../../test/webview_test_helper.h", 45 "../../test/webview_test_helper.h",
44 ] 46 ]
45 47
46 deps = [ 48 deps = [
47 ":webview", 49 ":webview",
48 "//base", 50 "//base",
49 "//content", 51 "//content",
52 "//content/test:test_support",
50 "//ipc:test_support", 53 "//ipc:test_support",
51 "//skia", 54 "//skia",
52 "//testing/gtest", 55 "//testing/gtest",
53 "//ui/aura", 56 "//ui/aura",
54 "//ui/base", 57 "//ui/base",
55 "//ui/events", 58 "//ui/events",
56 "//ui/gfx", 59 "//ui/gfx",
57 "//ui/gfx/geometry", 60 "//ui/gfx/geometry",
58 "//ui/views", 61 "//ui/views",
59 "//ui/views:test_support", 62 "//ui/views:test_support",
60 #'../../../../content/content_shell_and_tests.gyp:test_support_content', TO DO(GYP)
61 ] 63 ]
62 } 64 }
OLDNEW
« ui/events/BUILD.gn ('K') | « ui/views/BUILD.gn ('k') | ui/web_dialogs/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698