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

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

Issue 553283002: IPC::ChannelMojo: Introduce IPC::MojoBootstrap for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed build error Created 6 years, 3 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 | « ipc/ipc_test_base.cc ('k') | ipc/mojo/ipc_channel_mojo.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 component("mojo") { 5 component("mojo") {
6 sources = [ 6 sources = [
7 "ipc_channel_mojo.cc", 7 "ipc_channel_mojo.cc",
8 "ipc_channel_mojo.h", 8 "ipc_channel_mojo.h",
9 "ipc_channel_mojo_host.cc",
10 "ipc_channel_mojo_host.h",
9 "ipc_channel_mojo_readers.cc", 11 "ipc_channel_mojo_readers.cc",
10 "ipc_channel_mojo_readers.h", 12 "ipc_channel_mojo_readers.h",
13 "ipc_mojo_bootstrap.cc",
14 "ipc_mojo_bootstrap.h",
11 "ipc_message_pipe_reader.cc", 15 "ipc_message_pipe_reader.cc",
12 "ipc_message_pipe_reader.h", 16 "ipc_message_pipe_reader.h",
13 ] 17 ]
14 18
15 defines = [ "IPC_MOJO_IMPLEMENTATION" ] 19 defines = [ "IPC_MOJO_IMPLEMENTATION" ]
16 20
17 deps = [ 21 deps = [
18 "//base", 22 "//base",
19 "//base/third_party/dynamic_annotations", 23 "//base/third_party/dynamic_annotations",
20 "//ipc", 24 "//ipc",
21 "//mojo/environment:chromium", 25 "//mojo/environment:chromium",
22 "//mojo/public/cpp/bindings", 26 "//mojo/public/cpp/bindings",
23 "//mojo/system", 27 "//mojo/system",
24 ] 28 ]
25 } 29 }
26 30
27 test("ipc_mojo_unittests") { 31 test("ipc_mojo_unittests") {
28 sources = [ 32 sources = [
29 "ipc_channel_mojo_unittest.cc", 33 "ipc_channel_mojo_unittest.cc",
34 "ipc_mojo_bootstrap_unittest.cc",
30 "run_all_unittests.cc", 35 "run_all_unittests.cc",
31 ] 36 ]
32 37
33 deps = [ 38 deps = [
34 "//base", 39 "//base",
35 "//base/test:test_support", 40 "//base/test:test_support",
36 "//base/third_party/dynamic_annotations", 41 "//base/third_party/dynamic_annotations",
37 "//ipc", 42 "//ipc",
38 "//ipc:test_support", 43 "//ipc:test_support",
39 "//ipc/mojo", 44 "//ipc/mojo",
(...skipping 14 matching lines...) Expand all
54 "//base/test:test_support_perf", 59 "//base/test:test_support_perf",
55 "//base/third_party/dynamic_annotations", 60 "//base/third_party/dynamic_annotations",
56 "//ipc", 61 "//ipc",
57 "//ipc:test_support", 62 "//ipc:test_support",
58 "//ipc/mojo", 63 "//ipc/mojo",
59 "//mojo/environment:chromium", 64 "//mojo/environment:chromium",
60 "//mojo/system", 65 "//mojo/system",
61 "//url", 66 "//url",
62 ] 67 ]
63 } 68 }
OLDNEW
« no previous file with comments | « ipc/ipc_test_base.cc ('k') | ipc/mojo/ipc_channel_mojo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698