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

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

Issue 1423713009: EDK: Move ref counting classes to mojo/edk/util. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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
« no previous file with comments | « mojo/edk/embedder/system_impl_private_entrypoints.cc ('k') | mojo/edk/system/channel.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "mutex.h", 86 "mutex.h",
87 "options_validation.h", 87 "options_validation.h",
88 "platform_handle_dispatcher.cc", 88 "platform_handle_dispatcher.cc",
89 "platform_handle_dispatcher.h", 89 "platform_handle_dispatcher.h",
90 "process_identifier.h", 90 "process_identifier.h",
91 "proxy_message_pipe_endpoint.cc", 91 "proxy_message_pipe_endpoint.cc",
92 "proxy_message_pipe_endpoint.h", 92 "proxy_message_pipe_endpoint.h",
93 "raw_channel.cc", 93 "raw_channel.cc",
94 "raw_channel.h", 94 "raw_channel.h",
95 "raw_channel_posix.cc", 95 "raw_channel_posix.cc",
96 "ref_counted.h",
97 "ref_counted_internal.h",
98 "ref_ptr.h",
99 "ref_ptr_internal.h",
100 "remote_consumer_data_pipe_impl.cc", 96 "remote_consumer_data_pipe_impl.cc",
101 "remote_consumer_data_pipe_impl.h", 97 "remote_consumer_data_pipe_impl.h",
102 "remote_data_pipe_ack.h", 98 "remote_data_pipe_ack.h",
103 "remote_producer_data_pipe_impl.cc", 99 "remote_producer_data_pipe_impl.cc",
104 "remote_producer_data_pipe_impl.h", 100 "remote_producer_data_pipe_impl.h",
105 "shared_buffer_dispatcher.cc", 101 "shared_buffer_dispatcher.cc",
106 "shared_buffer_dispatcher.h", 102 "shared_buffer_dispatcher.h",
107 "simple_dispatcher.cc", 103 "simple_dispatcher.cc",
108 "simple_dispatcher.h", 104 "simple_dispatcher.h",
109 "slave_connection_manager.cc", 105 "slave_connection_manager.cc",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 "message_in_transit_test_utils.h", 168 "message_in_transit_test_utils.h",
173 "message_pipe_dispatcher_unittest.cc", 169 "message_pipe_dispatcher_unittest.cc",
174 "message_pipe_test_utils.cc", 170 "message_pipe_test_utils.cc",
175 "message_pipe_test_utils.h", 171 "message_pipe_test_utils.h",
176 "message_pipe_unittest.cc", 172 "message_pipe_unittest.cc",
177 "multiprocess_message_pipe_unittest.cc", 173 "multiprocess_message_pipe_unittest.cc",
178 "mutex_unittest.cc", 174 "mutex_unittest.cc",
179 "options_validation_unittest.cc", 175 "options_validation_unittest.cc",
180 "platform_handle_dispatcher_unittest.cc", 176 "platform_handle_dispatcher_unittest.cc",
181 "raw_channel_unittest.cc", 177 "raw_channel_unittest.cc",
182 "ref_counted_unittest.cc",
183 "remote_data_pipe_impl_unittest.cc", 178 "remote_data_pipe_impl_unittest.cc",
184 "remote_message_pipe_unittest.cc", 179 "remote_message_pipe_unittest.cc",
185 "shared_buffer_dispatcher_unittest.cc", 180 "shared_buffer_dispatcher_unittest.cc",
186 "simple_dispatcher_unittest.cc", 181 "simple_dispatcher_unittest.cc",
187 "test_channel_endpoint_client.cc", 182 "test_channel_endpoint_client.cc",
188 "test_channel_endpoint_client.h", 183 "test_channel_endpoint_client.h",
189 "thread_annotations_unittest.cc", 184 "thread_annotations_unittest.cc",
190 "unique_identifier_unittest.cc", 185 "unique_identifier_unittest.cc",
191 "waitable_event_unittest.cc", 186 "waitable_event_unittest.cc",
192 "waiter_test_utils.cc", 187 "waiter_test_utils.cc",
193 "waiter_test_utils.h", 188 "waiter_test_utils.h",
194 "waiter_unittest.cc", 189 "waiter_unittest.cc",
195 ] 190 ]
196 191
197 deps = [ 192 deps = [
198 ":system", 193 ":system",
199 "../embedder:embedder_unittests", 194 "../embedder:unittests",
200 "../test:test_support", 195 "../test:test_support",
201 "../util", 196 "../util",
197 "../util:unittests",
202 "test", 198 "test",
203 "test:run_all_unittests", 199 "test:run_all_unittests",
204 "test:unittests", 200 "test:unittests",
205 "//base", 201 "//base",
206 "//testing/gtest", 202 "//testing/gtest",
207 ] 203 ]
208 } 204 }
209 205
210 test("mojo_system_perftests") { 206 test("mojo_system_perftests") {
211 sources = [ 207 sources = [
212 "message_pipe_perftest.cc", 208 "message_pipe_perftest.cc",
213 "message_pipe_test_utils.cc", 209 "message_pipe_test_utils.cc",
214 "message_pipe_test_utils.h", 210 "message_pipe_test_utils.h",
215 "ref_counted_perftest.cc",
216 ] 211 ]
217 212
218 deps = [ 213 deps = [
219 ":system", 214 ":system",
220 "../test:test_support", 215 "../test:test_support",
216 "../util:perftests",
221 "test", 217 "test",
222 "test:perf", 218 "test:perf",
223 "test:run_all_perftests", 219 "test:run_all_perftests",
224 "//base", 220 "//base",
225 "//testing/gtest", 221 "//testing/gtest",
226 ] 222 ]
227 } 223 }
OLDNEW
« no previous file with comments | « mojo/edk/embedder/system_impl_private_entrypoints.cc ('k') | mojo/edk/system/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698