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

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

Issue 2596363002: [mojo] Delete RemoteMessagePipeBootstrap (Closed)
Patch Set: rebased Created 3 years, 11 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
« no previous file with comments | « mojo/edk/embedder/embedder.cc ('k') | mojo/edk/system/core.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("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("../../../mojo/public/tools/bindings/mojom.gni") 7 import("../../../mojo/public/tools/bindings/mojom.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "message_pipe_dispatcher.h", 51 "message_pipe_dispatcher.h",
52 "node_channel.cc", 52 "node_channel.cc",
53 "node_channel.h", 53 "node_channel.h",
54 "node_controller.cc", 54 "node_controller.cc",
55 "node_controller.h", 55 "node_controller.h",
56 "options_validation.h", 56 "options_validation.h",
57 "platform_handle_dispatcher.cc", 57 "platform_handle_dispatcher.cc",
58 "platform_handle_dispatcher.h", 58 "platform_handle_dispatcher.h",
59 "ports_message.cc", 59 "ports_message.cc",
60 "ports_message.h", 60 "ports_message.h",
61 "remote_message_pipe_bootstrap.cc",
62 "remote_message_pipe_bootstrap.h",
63 "request_context.cc", 61 "request_context.cc",
64 "request_context.h", 62 "request_context.h",
65 "shared_buffer_dispatcher.cc", 63 "shared_buffer_dispatcher.cc",
66 "shared_buffer_dispatcher.h", 64 "shared_buffer_dispatcher.h",
67 "wait_set_dispatcher.cc", 65 "wait_set_dispatcher.cc",
68 "wait_set_dispatcher.h", 66 "wait_set_dispatcher.h",
69 "waiter.cc", 67 "waiter.cc",
70 "waiter.h", 68 "waiter.h",
71 "watcher.cc", 69 "watcher.cc",
72 "watcher.h", 70 "watcher.h",
(...skipping 29 matching lines...) Expand all
102 "mach_port_relay.cc", 100 "mach_port_relay.cc",
103 "mach_port_relay.h", 101 "mach_port_relay.h",
104 ] 102 ]
105 } 103 }
106 104
107 if (is_nacl && !is_nacl_nonsfi) { 105 if (is_nacl && !is_nacl_nonsfi) {
108 sources -= [ 106 sources -= [
109 "broker_host.cc", 107 "broker_host.cc",
110 "broker_posix.cc", 108 "broker_posix.cc",
111 "channel_posix.cc", 109 "channel_posix.cc",
112 "remote_message_pipe_bootstrap.cc",
113 ] 110 ]
114 } 111 }
115 112
116 # Use target_os == "chromeos" instead of is_chromeos because we need to 113 # Use target_os == "chromeos" instead of is_chromeos because we need to
117 # build NaCl targets (i.e. IRT) for ChromeOS the same as the rest of ChromeOS. 114 # build NaCl targets (i.e. IRT) for ChromeOS the same as the rest of ChromeOS.
118 if (is_android || target_os == "chromeos") { 115 if (is_android || target_os == "chromeos") {
119 defines += [ "MOJO_EDK_LEGACY_PROTOCOL" ] 116 defines += [ "MOJO_EDK_LEGACY_PROTOCOL" ]
120 } 117 }
121 118
122 allow_circular_includes_from = [ "//mojo/edk/embedder" ] 119 allow_circular_includes_from = [ "//mojo/edk/embedder" ]
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 ":test_utils", 202 ":test_utils",
206 "//base", 203 "//base",
207 "//base/test:test_support", 204 "//base/test:test_support",
208 "//mojo/edk/system", 205 "//mojo/edk/system",
209 "//mojo/edk/test:run_all_perftests", 206 "//mojo/edk/test:run_all_perftests",
210 "//mojo/edk/test:test_support", 207 "//mojo/edk/test:test_support",
211 "//testing/gtest", 208 "//testing/gtest",
212 ] 209 ]
213 } 210 }
214 } 211 }
OLDNEW
« no previous file with comments | « mojo/edk/embedder/embedder.cc ('k') | mojo/edk/system/core.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698