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

Side by Side Diff: services/ui/public/interfaces/BUILD.gn

Issue 2504403004: Mojo C++ bindings: switch the generated code of clipboard.mojom to use STL types. (Closed)
Patch Set: . 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("//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_use_new_wrappers") { 8 mojom("interfaces_use_new_wrappers") {
9 sources = [ 9 sources = [
10 "accessibility_manager.mojom", 10 "accessibility_manager.mojom",
11 "animations.mojom", 11 "animations.mojom",
12 "clipboard.mojom",
12 "cursor.mojom", 13 "cursor.mojom",
13 "display_manager.mojom", 14 "display_manager.mojom",
14 "event_matcher.mojom", 15 "event_matcher.mojom",
15 "gpu_memory_buffer.mojom", 16 "gpu_memory_buffer.mojom",
16 "gpu_service.mojom", 17 "gpu_service.mojom",
17 "ime.mojom", 18 "ime.mojom",
18 "mus_constants.mojom", 19 "mus_constants.mojom",
19 "user_access_manager.mojom", 20 "user_access_manager.mojom",
20 "user_activity_monitor.mojom", 21 "user_activity_monitor.mojom",
21 "window_manager_constants.mojom", 22 "window_manager_constants.mojom",
(...skipping 12 matching lines...) Expand all
34 "//ui/events/mojo:interfaces", 35 "//ui/events/mojo:interfaces",
35 "//ui/gfx/geometry/mojo", 36 "//ui/gfx/geometry/mojo",
36 "//ui/gfx/mojo", 37 "//ui/gfx/mojo",
37 "//ui/platform_window/mojo:interfaces", 38 "//ui/platform_window/mojo:interfaces",
38 ] 39 ]
39 } 40 }
40 41
41 # TODO(yzshen): merge this target into the one above. 42 # TODO(yzshen): merge this target into the one above.
42 mojom("interfaces") { 43 mojom("interfaces") {
43 sources = [ 44 sources = [
44 "clipboard.mojom",
45 "window_manager.mojom", 45 "window_manager.mojom",
46 "window_manager_window_tree_factory.mojom", 46 "window_manager_window_tree_factory.mojom",
47 "window_tree.mojom", 47 "window_tree.mojom",
48 "window_tree_constants.mojom", 48 "window_tree_constants.mojom",
49 "window_tree_host.mojom", 49 "window_tree_host.mojom",
50 ] 50 ]
51 51
52 import_dirs = [ 52 import_dirs = [
53 get_path_info("../../../..", "abspath"), 53 get_path_info("../../../..", "abspath"),
54 "//mojo/services", 54 "//mojo/services",
(...skipping 30 matching lines...) Expand all
85 deps = [ 85 deps = [
86 "//base", 86 "//base",
87 "//base/test:test_support", 87 "//base/test:test_support",
88 "//mojo/edk/test:run_all_unittests", 88 "//mojo/edk/test:run_all_unittests",
89 "//services/ui/public/interfaces/display:test_interfaces", 89 "//services/ui/public/interfaces/display:test_interfaces",
90 "//testing/gtest", 90 "//testing/gtest",
91 "//ui/display/types", 91 "//ui/display/types",
92 "//ui/gfx:test_support", 92 "//ui/gfx:test_support",
93 ] 93 ]
94 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698