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

Side by Side Diff: mojo/public/cpp/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 source_set("system") { 5 source_set("system") {
6 sources = [ 6 sources = [
7 "buffer.cc", 7 "buffer.cc",
8 "buffer.h", 8 "buffer.h",
9 "core.h", 9 "core.h",
10 "data_pipe.h", 10 "data_pipe.h",
11 "event.cc",
12 "event.h",
11 "functions.h", 13 "functions.h",
12 "handle.h", 14 "handle.h",
13 "message.h", 15 "message.h",
14 "message_pipe.h", 16 "message_pipe.h",
15 "platform_handle.cc", 17 "platform_handle.cc",
16 "platform_handle.h", 18 "platform_handle.h",
17 "watcher.cc", 19 "watcher.cc",
18 "watcher.h", 20 "watcher.h",
19 ] 21 ]
20 22
21 public_deps = [ 23 public_deps = [
22 "//base", 24 "//base",
23 "//mojo/public/c/system", 25 "//mojo/public/c/system",
24 ] 26 ]
25 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698