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

Side by Side Diff: mojo/edk/system/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 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 "mach_port_relay.cc", 105 "mach_port_relay.cc",
106 "mach_port_relay.h", 106 "mach_port_relay.h",
107 ] 107 ]
108 } 108 }
109 109
110 if (is_nacl && !is_nacl_nonsfi) { 110 if (is_nacl && !is_nacl_nonsfi) {
111 sources -= [ 111 sources -= [
112 "broker_host_posix.cc", 112 "broker_host_posix.cc",
113 "broker_posix.cc", 113 "broker_posix.cc",
114 "channel_posix.cc", 114 "channel_posix.cc",
115 "remote_message_pipe_bootstrap.cc",
115 ] 116 ]
116 } 117 }
117 118
118 allow_circular_includes_from = [ "//mojo/edk/embedder" ] 119 allow_circular_includes_from = [ "//mojo/edk/embedder" ]
119 } 120 }
120 121
121 group("tests") { 122 group("tests") {
122 testonly = true 123 testonly = true
123 deps = [ 124 deps = [
124 ":mojo_system_unittests", 125 ":mojo_system_unittests",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 ":test_utils", 202 ":test_utils",
202 "//base", 203 "//base",
203 "//base/test:test_support", 204 "//base/test:test_support",
204 "//mojo/edk/system", 205 "//mojo/edk/system",
205 "//mojo/edk/test:run_all_perftests", 206 "//mojo/edk/test:run_all_perftests",
206 "//mojo/edk/test:test_support", 207 "//mojo/edk/test:test_support",
207 "//testing/gtest", 208 "//testing/gtest",
208 ] 209 ]
209 } 210 }
210 } 211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698