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

Side by Side Diff: ipc/mojo/BUILD.gn

Issue 382333002: Introduce ChannelMojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 component("mojo") {
6 sources = [
7 "ipc_channel_mojo.cc",
8 "ipc_channel_mojo.h",
9 "ipc_message_pipe_reader.cc",
10 "ipc_message_pipe_reader.h",
11 ]
12
13 deps = [
14 "//base",
15 "//ipc",
16 "//mojo/public/cpp/bindings",
17 "//mojo/system",
18 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect.
19 "//base/third_party/dynamic_annotations",
20 ]
21 }
22
23 test("ipc_mojo_unittests") {
24 sources = [
25 "ipc_channel_mojo_unittest.cc",
26 "run_all_unittests.cc",
27 ]
28
29 deps = [
30 "//base",
31 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect.
32 "//base/test:test_support",
33 "//base/third_party/dynamic_annotations",
34 "//ipc",
35 "//ipc:test_support",
36 "//ipc/mojo",
37 "//mojo/environment:chromium",
38 "//mojo/system",
39 "//url",
40 ]
41 }
OLDNEW
« ipc/ipc_channel.h ('K') | « ipc/ipc_test_sink.cc ('k') | ipc/mojo/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698