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

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: base::string16 in interfaces. >:( 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
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 "platform_window_mus.cc", 27 "platform_window_mus.cc",
26 "platform_window_mus.h", 28 "platform_window_mus.h",
27 "screen_mus.cc", 29 "screen_mus.cc",
(...skipping 24 matching lines...) Expand all
52 "//base", 54 "//base",
53 "//base:i18n", 55 "//base:i18n",
54 "//base/third_party/dynamic_annotations", 56 "//base/third_party/dynamic_annotations",
55 "//cc", 57 "//cc",
56 "//cc/surfaces", 58 "//cc/surfaces",
57 "//components/bitmap_uploader", 59 "//components/bitmap_uploader",
58 "//components/mus/gles2:lib", 60 "//components/mus/gles2:lib",
59 "//components/mus/public/cpp", 61 "//components/mus/public/cpp",
60 "//components/mus/public/cpp/surfaces", 62 "//components/mus/public/cpp/surfaces",
61 "//components/mus/public/interfaces", 63 "//components/mus/public/interfaces",
64 "//mojo/common",
62 "//mojo/public/c/system:for_component", 65 "//mojo/public/c/system:for_component",
63 "//mojo/public/cpp/bindings", 66 "//mojo/public/cpp/bindings",
64 "//services/catalog/public/cpp", 67 "//services/catalog/public/cpp",
65 "//services/shell/public/cpp", 68 "//services/shell/public/cpp",
66 "//services/shell/public/interfaces", 69 "//services/shell/public/interfaces",
67 "//skia", 70 "//skia",
68 "//third_party/icu", 71 "//third_party/icu",
69 "//ui/aura", 72 "//ui/aura",
70 "//ui/compositor", 73 "//ui/compositor",
71 "//ui/display", 74 "//ui/display",
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 240
238 # Tests that must run sequentially because they access system-wide features 241 # Tests that must run sequentially because they access system-wide features
239 # like capture. 242 # like capture.
240 test("views_mus_interactive_ui_tests") { 243 test("views_mus_interactive_ui_tests") {
241 testonly = true 244 testonly = true
242 245
243 configs += [ "//build/config:precompiled_headers" ] 246 configs += [ "//build/config:precompiled_headers" ]
244 247
245 sources = [ 248 sources = [
246 "../widget/widget_interactive_uitest.cc", 249 "../widget/widget_interactive_uitest.cc",
250 "clipboard_unittest.cc",
247 "interactive_ui_tests_mus.cc", 251 "interactive_ui_tests_mus.cc",
248 ] 252 ]
249 253
250 deps = [ 254 deps = [
251 ":mus", 255 ":mus",
252 ":test_support", 256 ":test_support",
253 "//base", 257 "//base",
254 "//services/shell/background:main", # Provides main(). 258 "//services/shell/background:main", # Provides main().
259 "//testing/gmock",
260 "//testing/gtest",
255 "//ui/aura", 261 "//ui/aura",
256 "//ui/base", 262 "//ui/base",
257 "//ui/base/ime", 263 "//ui/base/ime",
258 "//ui/events:events_base", 264 "//ui/events:events_base",
259 "//ui/events:test_support", 265 "//ui/events:test_support",
260 "//ui/gl:test_support", 266 "//ui/gl:test_support",
261 "//ui/touch_selection", 267 "//ui/touch_selection",
262 "//ui/views", 268 "//ui/views",
263 "//ui/views:test_support_internal", 269 "//ui/views:test_support_internal",
264 "//ui/wm", 270 "//ui/wm",
(...skipping 28 matching lines...) Expand all
293 type = "exe" 299 type = "exe"
294 application_name = "views_mus_interactive_ui_tests" 300 application_name = "views_mus_interactive_ui_tests"
295 source = "interactive_ui_tests_manifest.json" 301 source = "interactive_ui_tests_manifest.json"
296 } 302 }
297 303
298 group("for_component") { 304 group("for_component") {
299 public_deps = [ 305 public_deps = [
300 ":mus", 306 ":mus",
301 ] 307 ]
302 } 308 }
OLDNEW
« no previous file with comments | « ui/base/x/selection_utils.cc ('k') | ui/views/mus/DEPS » ('j') | ui/views/mus/clipboard_mus.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698