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

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

Issue 584683002: Improve GN header checker, make //ui pass. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 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
« no previous file with comments | « ui/views/BUILD.gn ('k') | ui/views/examples/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
22 "//base:i18n", 21 "//base:i18n",
23 "//base/third_party/dynamic_annotations", 22 "//base/third_party/dynamic_annotations",
24 "//content/public/browser", 23 "//ipc",
25 "//skia", 24 "//skia",
26 "//ui/accessibility", 25 "//ui/accessibility",
27 "//ui/base", 26 "//ui/base",
28 "//ui/events", 27 "//ui/events",
29 "//ui/events:events_base", 28 "//ui/events:events_base",
30 "//ui/gfx",
31 "//ui/gfx/geometry",
32 "//ui/web_dialogs", 29 "//ui/web_dialogs",
33 "//ui/views",
34 "//url", 30 "//url",
35 ] 31 ]
36 32
37 forward_dependent_configs_from = [ 33 public_deps = [
34 "//base",
35 "//content/public/browser",
36 "//ui/aura",
37 "//ui/gfx",
38 "//ui/gfx/geometry",
38 "//ui/views", 39 "//ui/views",
39 ] 40 ]
40 } 41 }
41 42
42 source_set("test_support") { 43 source_set("test_support") {
43 testonly = true 44 testonly = true
44 sources = [ 45 sources = [
45 "../../test/webview_test_helper.cc", 46 "../../test/webview_test_helper.cc",
46 "../../test/webview_test_helper.h", 47 "../../test/webview_test_helper.h",
47 ] 48 ]
48 49
50 public_deps = [
51 ":webview",
52 ]
49 deps = [ 53 deps = [
50 ":webview",
51 "//base", 54 "//base",
52 "//content", 55 "//content",
53 "//content/test:test_support", 56 "//content/test:test_support",
54 "//ipc:test_support", 57 "//ipc:test_support",
55 "//skia", 58 "//skia",
56 "//testing/gtest", 59 "//testing/gtest",
57 "//ui/aura", 60 "//ui/aura",
58 "//ui/base", 61 "//ui/base",
59 "//ui/events", 62 "//ui/events",
60 "//ui/gfx", 63 "//ui/gfx",
61 "//ui/gfx/geometry", 64 "//ui/gfx/geometry",
62 "//ui/views", 65 "//ui/views",
63 "//ui/views:test_support", 66 "//ui/views:test_support",
64 ] 67 ]
65 } 68 }
OLDNEW
« no previous file with comments | « ui/views/BUILD.gn ('k') | ui/views/examples/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698