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

Side by Side Diff: mojo/public/cpp/bindings/BUILD.gn

Issue 2033243003: Use Mojo pipes to signal sync IPC events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 source_set("bindings") { 5 source_set("bindings") {
6 sources = [ 6 sources = [
7 "array.h", 7 "array.h",
8 "array_traits.h", 8 "array_traits.h",
9 "array_traits_standard.h", 9 "array_traits_standard.h",
10 "array_traits_stl.h", 10 "array_traits_stl.h",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 "lib/scoped_interface_endpoint_handle.cc", 73 "lib/scoped_interface_endpoint_handle.cc",
74 "lib/serialization.h", 74 "lib/serialization.h",
75 "lib/serialization_context.cc", 75 "lib/serialization_context.cc",
76 "lib/serialization_context.h", 76 "lib/serialization_context.h",
77 "lib/serialization_forward.h", 77 "lib/serialization_forward.h",
78 "lib/serialization_util.cc", 78 "lib/serialization_util.cc",
79 "lib/serialization_util.h", 79 "lib/serialization_util.h",
80 "lib/string_serialization.h", 80 "lib/string_serialization.h",
81 "lib/string_traits_string16.cc", 81 "lib/string_traits_string16.cc",
82 "lib/sync_handle_registry.cc", 82 "lib/sync_handle_registry.cc",
83 "lib/sync_handle_registry.h",
84 "lib/sync_handle_watcher.cc", 83 "lib/sync_handle_watcher.cc",
85 "lib/sync_handle_watcher.h", 84 "lib/sync_handle_watcher.h",
86 "lib/union_accessor.h", 85 "lib/union_accessor.h",
87 "lib/validate_params.h", 86 "lib/validate_params.h",
88 "lib/validation_errors.cc", 87 "lib/validation_errors.cc",
89 "lib/validation_errors.h", 88 "lib/validation_errors.h",
90 "lib/validation_util.cc", 89 "lib/validation_util.cc",
91 "lib/validation_util.h", 90 "lib/validation_util.h",
92 "map.h", 91 "map.h",
93 "map_traits.h", 92 "map_traits.h",
94 "map_traits_standard.h", 93 "map_traits_standard.h",
95 "map_traits_stl.h", 94 "map_traits_stl.h",
96 "message.h", 95 "message.h",
97 "message_filter.h", 96 "message_filter.h",
98 "native_struct.h", 97 "native_struct.h",
99 "no_interface.h", 98 "no_interface.h",
100 "scoped_interface_endpoint_handle.h", 99 "scoped_interface_endpoint_handle.h",
101 "stl_converters.h", 100 "stl_converters.h",
102 "string.h", 101 "string.h",
103 "string_traits.h", 102 "string_traits.h",
104 "string_traits_standard.h", 103 "string_traits_standard.h",
105 "string_traits_stl.h", 104 "string_traits_stl.h",
106 "string_traits_string16.h", 105 "string_traits_string16.h",
107 "string_traits_string_piece.h", 106 "string_traits_string_piece.h",
108 "strong_binding.h", 107 "strong_binding.h",
109 "struct_ptr.h", 108 "struct_ptr.h",
109 "sync_handle_registry.h",
110 "type_converter.h", 110 "type_converter.h",
111 ] 111 ]
112 112
113 public_deps = [ 113 public_deps = [
114 ":callback", 114 ":callback",
115 ":struct_traits", 115 ":struct_traits",
116 "//base", 116 "//base",
117 "//ipc:param_traits", 117 "//ipc:param_traits",
118 "//mojo/public/cpp/system", 118 "//mojo/public/cpp/system",
119 ] 119 ]
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 ] 157 ]
158 158
159 public_deps = [ 159 public_deps = [
160 ":bindings", 160 ":bindings",
161 "//third_party/WebKit/Source/wtf", 161 "//third_party/WebKit/Source/wtf",
162 ] 162 ]
163 163
164 public_configs = [ "//third_party/WebKit/Source:config" ] 164 public_configs = [ "//third_party/WebKit/Source:config" ]
165 } 165 }
166 } 166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698