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

Side by Side Diff: services/ui/public/interfaces/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, 4 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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 mojom("interfaces") { 8 mojom("interfaces") {
9 sources = [ 9 sources = [
10 "accelerator_registrar.mojom", 10 "accelerator_registrar.mojom",
(...skipping 21 matching lines...) Expand all
32 32
33 import_dirs = [ 33 import_dirs = [
34 get_path_info("../../../..", "abspath"), 34 get_path_info("../../../..", "abspath"),
35 "//mojo/services", 35 "//mojo/services",
36 ] 36 ]
37 37
38 public_deps = [ 38 public_deps = [
39 "//cc/ipc:interfaces", 39 "//cc/ipc:interfaces",
40 "//gpu/ipc/common:interfaces", 40 "//gpu/ipc/common:interfaces",
41 "//services/ui/public/interfaces/display", 41 "//services/ui/public/interfaces/display",
42 "//skia/public/interfaces",
42 "//ui/events/mojo:interfaces", 43 "//ui/events/mojo:interfaces",
43 "//ui/gfx/geometry/mojo", 44 "//ui/gfx/geometry/mojo",
44 "//ui/gfx/mojo", 45 "//ui/gfx/mojo",
45 "//ui/platform_window/mojo:interfaces", 46 "//ui/platform_window/mojo:interfaces",
46 ] 47 ]
47 48
48 use_new_wrapper_types = false 49 use_new_wrapper_types = false
49 } 50 }
50 51
51 test("ui_struct_traits_unittests") { 52 test("ui_struct_traits_unittests") {
52 testonly = true 53 testonly = true
53 54
54 sources = [ 55 sources = [
55 "display/display_struct_traits_unittest.cc", 56 "display/display_struct_traits_unittest.cc",
56 ] 57 ]
57 58
58 deps = [ 59 deps = [
59 "//base", 60 "//base",
60 "//base/test:test_support", 61 "//base/test:test_support",
61 "//mojo/edk/test:run_all_unittests", 62 "//mojo/edk/test:run_all_unittests",
62 "//services/ui/public/interfaces/display:test_interfaces", 63 "//services/ui/public/interfaces/display:test_interfaces",
63 "//testing/gtest", 64 "//testing/gtest",
64 "//ui/display/types", 65 "//ui/display/types",
65 "//ui/gfx:test_support", 66 "//ui/gfx:test_support",
66 ] 67 ]
67 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698