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

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

Issue 2266603002: mus: Implement interwindow drag and drop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Uploaded for a few comments. Created 4 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
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/shell/public/cpp/service.gni") 7 import("//services/shell/public/cpp/service.gni")
8 import("//services/shell/public/service_manifest.gni") 8 import("//services/shell/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 gypi = exec_script("//build/gypi_to_gn.py", 12 gypi = exec_script("//build/gypi_to_gn.py",
13 [ rebase_path("../views.gyp") ], 13 [ rebase_path("../views.gyp") ],
14 "scope", 14 "scope",
15 [ "../views.gyp" ]) 15 [ "../views.gyp" ])
16 component("mus") { 16 component("mus") {
17 output_name = "ui_views_mus_lib" 17 output_name = "ui_views_mus_lib"
18 18
19 sources = [ 19 sources = [
20 "aura_init.cc", 20 "aura_init.cc",
21 "aura_init.h", 21 "aura_init.h",
22 "clipboard_mus.cc", 22 "clipboard_mus.cc",
23 "clipboard_mus.h", 23 "clipboard_mus.h",
24 "display_list.cc", 24 "display_list.cc",
25 "display_list.h", 25 "display_list.h",
26 "drop_target_mus.cc",
27 "drop_target_mus.h",
26 "input_method_mus.cc", 28 "input_method_mus.cc",
27 "input_method_mus.h", 29 "input_method_mus.h",
28 "mus_export.h", 30 "mus_export.h",
29 "native_widget_mus.cc", 31 "native_widget_mus.cc",
30 "native_widget_mus.h", 32 "native_widget_mus.h",
31 "os_exchange_data_provider_mus.cc", 33 "os_exchange_data_provider_mus.cc",
32 "os_exchange_data_provider_mus.h", 34 "os_exchange_data_provider_mus.h",
33 "pointer_watcher_event_router.cc", 35 "pointer_watcher_event_router.cc",
34 "pointer_watcher_event_router.h", 36 "pointer_watcher_event_router.h",
35 "screen_mus.cc", 37 "screen_mus.cc",
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 type = "exe" 305 type = "exe"
304 name = "views_mus_unittests" 306 name = "views_mus_unittests"
305 source = "unittests_manifest.json" 307 source = "unittests_manifest.json"
306 } 308 }
307 309
308 service_manifest("interactive_ui_tests_manifest") { 310 service_manifest("interactive_ui_tests_manifest") {
309 type = "exe" 311 type = "exe"
310 name = "views_mus_interactive_ui_tests" 312 name = "views_mus_interactive_ui_tests"
311 source = "interactive_ui_tests_manifest.json" 313 source = "interactive_ui_tests_manifest.json"
312 } 314 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698