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

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

Issue 2507963002: Implement hit tests/client area. (Closed)
Patch Set: Really fix compile Created 4 years, 1 month 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("//services/service_manager/public/cpp/service.gni") 7 import("//services/service_manager/public/cpp/service.gni")
8 import("//services/service_manager/public/service_manifest.gni") 8 import("//services/service_manager/public/service_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", 18 "clipboard_mus.cc",
19 "clipboard_mus.h", 19 "clipboard_mus.h",
20 "desktop_window_tree_host_mus.cc", 20 "desktop_window_tree_host_mus.cc",
21 "desktop_window_tree_host_mus.h", 21 "desktop_window_tree_host_mus.h",
22 "drag_drop_client_mus.cc", 22 "drag_drop_client_mus.cc",
23 "drag_drop_client_mus.h", 23 "drag_drop_client_mus.h",
24 "drop_target_mus.cc", 24 "drop_target_mus.cc",
25 "drop_target_mus.h", 25 "drop_target_mus.h",
26 "input_method_mus.cc", 26 "input_method_mus.cc",
27 "input_method_mus.h", 27 "input_method_mus.h",
28 "mus_client.cc", 28 "mus_client.cc",
29 "mus_client.h", 29 "mus_client.h",
30 "mus_client_observer.h",
30 "mus_export.h", 31 "mus_export.h",
31 "native_widget_mus.cc", 32 "native_widget_mus.cc",
32 "native_widget_mus.h", 33 "native_widget_mus.h",
33 "pointer_watcher_event_router.cc", 34 "pointer_watcher_event_router.cc",
34 "pointer_watcher_event_router.h", 35 "pointer_watcher_event_router.h",
35 "screen_mus.cc", 36 "screen_mus.cc",
36 "screen_mus.h", 37 "screen_mus.h",
37 "screen_mus_delegate.h", 38 "screen_mus_delegate.h",
38 "surface_context_factory.cc", 39 "surface_context_factory.cc",
39 "surface_context_factory.h", 40 "surface_context_factory.h",
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 403
403 service_manifest("unittests_aura_manifest") { 404 service_manifest("unittests_aura_manifest") {
404 name = "views_aura_mus_unittests" 405 name = "views_aura_mus_unittests"
405 source = "unittests_aura_manifest.json" 406 source = "unittests_aura_manifest.json"
406 } 407 }
407 408
408 service_manifest("interactive_ui_tests_manifest") { 409 service_manifest("interactive_ui_tests_manifest") {
409 name = "views_mus_interactive_ui_tests" 410 name = "views_mus_interactive_ui_tests"
410 source = "interactive_ui_tests_manifest.json" 411 source = "interactive_ui_tests_manifest.json"
411 } 412 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698