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

Side by Side Diff: third_party/mojo/src/mojo/edk/system/BUILD.gn

Issue 954643002: Update mojo sdk to rev 3d23dae011859a2aae49f1d1adde705c8e85d819 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanup, nit Created 5 years, 9 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_edk.gni") 5 import("../mojo_edk.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 26 matching lines...) Expand all
37 "channel_info.h", 37 "channel_info.h",
38 "channel_manager.cc", 38 "channel_manager.cc",
39 "channel_manager.h", 39 "channel_manager.h",
40 "configuration.cc", 40 "configuration.cc",
41 "configuration.h", 41 "configuration.h",
42 "connection_manager.h", 42 "connection_manager.h",
43 "core.cc", 43 "core.cc",
44 "core.h", 44 "core.h",
45 "data_pipe.cc", 45 "data_pipe.cc",
46 "data_pipe.h", 46 "data_pipe.h",
47 "data_pipe_impl.h",
47 "data_pipe_consumer_dispatcher.cc", 48 "data_pipe_consumer_dispatcher.cc",
48 "data_pipe_consumer_dispatcher.h", 49 "data_pipe_consumer_dispatcher.h",
49 "data_pipe_producer_dispatcher.cc", 50 "data_pipe_producer_dispatcher.cc",
50 "data_pipe_producer_dispatcher.h", 51 "data_pipe_producer_dispatcher.h",
51 "dispatcher.cc", 52 "dispatcher.cc",
52 "dispatcher.h", 53 "dispatcher.h",
53 "endpoint_relayer.cc", 54 "endpoint_relayer.cc",
54 "endpoint_relayer.h", 55 "endpoint_relayer.h",
55 "handle_signals_state.h", 56 "handle_signals_state.h",
56 "handle_table.cc", 57 "handle_table.cc",
57 "handle_table.h", 58 "handle_table.h",
58 "incoming_endpoint.cc", 59 "incoming_endpoint.cc",
59 "incoming_endpoint.h", 60 "incoming_endpoint.h",
60 "local_data_pipe.cc", 61 "local_data_pipe_impl.cc",
61 "local_data_pipe.h", 62 "local_data_pipe_impl.h",
62 "local_message_pipe_endpoint.cc", 63 "local_message_pipe_endpoint.cc",
63 "local_message_pipe_endpoint.h", 64 "local_message_pipe_endpoint.h",
64 "mapping_table.cc", 65 "mapping_table.cc",
65 "mapping_table.h", 66 "mapping_table.h",
66 "master_connection_manager.cc", 67 "master_connection_manager.cc",
67 "master_connection_manager.h", 68 "master_connection_manager.h",
68 "memory.cc", 69 "memory.cc",
69 "memory.h", 70 "memory.h",
70 "message_in_transit.cc", 71 "message_in_transit.cc",
71 "message_in_transit.h", 72 "message_in_transit.h",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 public_deps = [ 111 public_deps = [
111 "../embedder", 112 "../embedder",
112 "../embedder:delegates", 113 "../embedder:delegates",
113 "../embedder:platform", 114 "../embedder:platform",
114 "../../public/c/system", 115 "../../public/c/system",
115 ] 116 ]
116 117
117 deps = [ 118 deps = [
118 "//base", 119 "//base",
119 "//base/third_party/dynamic_annotations", 120 "//base/third_party/dynamic_annotations",
120 "//crypto",
121 ] 121 ]
122 122
123 allow_circular_includes_from = [ "../embedder" ] 123 allow_circular_includes_from = [ "../embedder" ]
124 } 124 }
125 125
126 group("tests") { 126 group("tests") {
127 testonly = true 127 testonly = true
128 deps = [ 128 deps = [
129 ":mojo_system_unittests", 129 ":mojo_system_unittests",
130 ":mojo_message_pipe_perftests", 130 ":mojo_message_pipe_perftests",
(...skipping 20 matching lines...) Expand all
151 "awakable_list_unittest.cc", 151 "awakable_list_unittest.cc",
152 "channel_endpoint_id_unittest.cc", 152 "channel_endpoint_id_unittest.cc",
153 "channel_manager_unittest.cc", 153 "channel_manager_unittest.cc",
154 "channel_unittest.cc", 154 "channel_unittest.cc",
155 "connection_manager_unittest.cc", 155 "connection_manager_unittest.cc",
156 "core_test_base.cc", 156 "core_test_base.cc",
157 "core_test_base.h", 157 "core_test_base.h",
158 "core_unittest.cc", 158 "core_unittest.cc",
159 "data_pipe_unittest.cc", 159 "data_pipe_unittest.cc",
160 "dispatcher_unittest.cc", 160 "dispatcher_unittest.cc",
161 "local_data_pipe_unittest.cc", 161 "local_data_pipe_impl_unittest.cc",
162 "memory_unittest.cc", 162 "memory_unittest.cc",
163 "message_pipe_dispatcher_unittest.cc", 163 "message_pipe_dispatcher_unittest.cc",
164 "message_pipe_test_utils.cc", 164 "message_pipe_test_utils.cc",
165 "message_pipe_test_utils.h", 165 "message_pipe_test_utils.h",
166 "message_pipe_unittest.cc", 166 "message_pipe_unittest.cc",
167 "multiprocess_message_pipe_unittest.cc", 167 "multiprocess_message_pipe_unittest.cc",
168 "options_validation_unittest.cc", 168 "options_validation_unittest.cc",
169 "platform_handle_dispatcher_unittest.cc", 169 "platform_handle_dispatcher_unittest.cc",
170 "raw_channel_unittest.cc", 170 "raw_channel_unittest.cc",
171 "remote_message_pipe_unittest.cc", 171 "remote_message_pipe_unittest.cc",
(...skipping 29 matching lines...) Expand all
201 deps = [ 201 deps = [
202 ":system", 202 ":system",
203 ":test_utils", 203 ":test_utils",
204 "../test:test_support", 204 "../test:test_support",
205 "//base", 205 "//base",
206 "//base/test:test_support", 206 "//base/test:test_support",
207 "//base/test:test_support_perf", 207 "//base/test:test_support_perf",
208 "//testing/gtest", 208 "//testing/gtest",
209 ] 209 ]
210 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698