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

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

Issue 2151013002: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remoting Created 4 years, 5 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/mus/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_mac.mm", 9 "unhandled_keyboard_event_handler_mac.mm",
10 "unhandled_keyboard_event_handler_win.cc", 10 "unhandled_keyboard_event_handler_win.cc",
(...skipping 26 matching lines...) Expand all
37 "//ui/gfx", 37 "//ui/gfx",
38 "//ui/gfx/geometry", 38 "//ui/gfx/geometry",
39 "//ui/views", 39 "//ui/views",
40 ] 40 ]
41 41
42 if (is_linux || is_android) { 42 if (is_linux || is_android) {
43 sources += [ "unhandled_keyboard_event_handler_default.cc" ] 43 sources += [ "unhandled_keyboard_event_handler_default.cc" ]
44 } 44 }
45 } 45 }
46 46
47 source_set("test_support") { 47 static_library("test_support") {
48 testonly = true 48 testonly = true
49 sources = [ 49 sources = [
50 "../../test/webview_test_helper.cc", 50 "../../test/webview_test_helper.cc",
51 "../../test/webview_test_helper.h", 51 "../../test/webview_test_helper.h",
52 ] 52 ]
53 53
54 public_deps = [ 54 public_deps = [
55 ":webview", 55 ":webview",
56 ] 56 ]
57 deps = [ 57 deps = [
58 "//base", 58 "//base",
59 "//content", 59 "//content",
60 "//content/test:test_support", 60 "//content/test:test_support",
61 "//ipc:test_support", 61 "//ipc:test_support",
62 "//skia", 62 "//skia",
63 "//testing/gtest", 63 "//testing/gtest",
64 "//ui/base", 64 "//ui/base",
65 "//ui/events", 65 "//ui/events",
66 "//ui/gfx", 66 "//ui/gfx",
67 "//ui/gfx/geometry", 67 "//ui/gfx/geometry",
68 "//ui/views", 68 "//ui/views",
69 "//ui/views:test_support", 69 "//ui/views:test_support",
70 ] 70 ]
71 } 71 }
OLDNEW
« no previous file with comments | « ui/views/BUILD.gn ('k') | ui/views/mus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698