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

Side by Side Diff: ui/views/mus/BUILD.gn

Issue 2011833003: Implement ui::ClipboardMus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove static in test by creating forwarding clipboard subclass. Created 4 years, 6 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/base/x/selection_utils.cc ('k') | ui/views/mus/DEPS » ('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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//mojo/public/mojo_application.gni") 7 import("//mojo/public/mojo_application.gni")
8 import("//mojo/public/mojo_application_manifest.gni") 8 import("//mojo/public/mojo_application_manifest.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
11 11
12 component("mus") { 12 component("mus") {
13 output_name = "ui_views_mus_lib" 13 output_name = "ui_views_mus_lib"
14 14
15 sources = [ 15 sources = [
16 "aura_init.cc", 16 "aura_init.cc",
17 "aura_init.h", 17 "aura_init.h",
18 "clipboard_mus.cc",
19 "clipboard_mus.h",
18 "display_list.cc", 20 "display_list.cc",
19 "display_list.h", 21 "display_list.h",
20 "input_method_mus.cc", 22 "input_method_mus.cc",
21 "input_method_mus.h", 23 "input_method_mus.h",
22 "mus_export.h", 24 "mus_export.h",
23 "native_widget_mus.cc", 25 "native_widget_mus.cc",
24 "native_widget_mus.h", 26 "native_widget_mus.h",
25 "screen_mus.cc", 27 "screen_mus.cc",
26 "screen_mus.h", 28 "screen_mus.h",
27 "screen_mus_delegate.h", 29 "screen_mus_delegate.h",
(...skipping 23 matching lines...) Expand all
51 "//base:i18n", 53 "//base:i18n",
52 "//base/third_party/dynamic_annotations", 54 "//base/third_party/dynamic_annotations",
53 "//cc", 55 "//cc",
54 "//cc/surfaces", 56 "//cc/surfaces",
55 "//components/bitmap_uploader", 57 "//components/bitmap_uploader",
56 "//components/mus/common:mus_common", 58 "//components/mus/common:mus_common",
57 "//components/mus/gles2:lib", 59 "//components/mus/gles2:lib",
58 "//components/mus/public/cpp", 60 "//components/mus/public/cpp",
59 "//components/mus/public/cpp/surfaces", 61 "//components/mus/public/cpp/surfaces",
60 "//components/mus/public/interfaces", 62 "//components/mus/public/interfaces",
63 "//mojo/common",
61 "//mojo/public/c/system:for_component", 64 "//mojo/public/c/system:for_component",
62 "//mojo/public/cpp/bindings", 65 "//mojo/public/cpp/bindings",
63 "//services/catalog/public/cpp", 66 "//services/catalog/public/cpp",
64 "//services/shell/public/cpp", 67 "//services/shell/public/cpp",
65 "//services/shell/public/interfaces", 68 "//services/shell/public/interfaces",
66 "//skia", 69 "//skia",
67 "//third_party/icu", 70 "//third_party/icu",
68 "//ui/aura", 71 "//ui/aura",
69 "//ui/compositor", 72 "//ui/compositor",
70 "//ui/display", 73 "//ui/display",
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 245
243 # Tests that must run sequentially because they access system-wide features 246 # Tests that must run sequentially because they access system-wide features
244 # like capture. 247 # like capture.
245 test("views_mus_interactive_ui_tests") { 248 test("views_mus_interactive_ui_tests") {
246 testonly = true 249 testonly = true
247 250
248 configs += [ "//build/config:precompiled_headers" ] 251 configs += [ "//build/config:precompiled_headers" ]
249 252
250 sources = [ 253 sources = [
251 "../widget/widget_interactive_uitest.cc", 254 "../widget/widget_interactive_uitest.cc",
255 "clipboard_unittest.cc",
252 "interactive_ui_tests_mus.cc", 256 "interactive_ui_tests_mus.cc",
253 ] 257 ]
254 258
255 deps = [ 259 deps = [
256 ":mus", 260 ":mus",
257 ":test_support", 261 ":test_support",
258 "//base", 262 "//base",
259 "//services/shell/background:main", # Provides main(). 263 "//services/shell/background:main", # Provides main().
264 "//testing/gmock",
265 "//testing/gtest",
260 "//ui/aura", 266 "//ui/aura",
261 "//ui/base", 267 "//ui/base",
262 "//ui/base/ime", 268 "//ui/base/ime",
263 "//ui/events:events_base", 269 "//ui/events:events_base",
264 "//ui/events:test_support", 270 "//ui/events:test_support",
265 "//ui/gl:test_support", 271 "//ui/gl:test_support",
266 "//ui/touch_selection", 272 "//ui/touch_selection",
267 "//ui/views", 273 "//ui/views",
268 "//ui/views:test_support_internal", 274 "//ui/views:test_support_internal",
269 "//ui/wm", 275 "//ui/wm",
(...skipping 28 matching lines...) Expand all
298 type = "exe" 304 type = "exe"
299 application_name = "views_mus_interactive_ui_tests" 305 application_name = "views_mus_interactive_ui_tests"
300 source = "interactive_ui_tests_manifest.json" 306 source = "interactive_ui_tests_manifest.json"
301 } 307 }
302 308
303 group("for_component") { 309 group("for_component") {
304 public_deps = [ 310 public_deps = [
305 ":mus", 311 ":mus",
306 ] 312 ]
307 } 313 }
OLDNEW
« no previous file with comments | « ui/base/x/selection_utils.cc ('k') | ui/views/mus/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698