OLD | NEW |
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("headers") { | 5 source_set("headers") { |
6 sources = [ | 6 sources = [ |
7 "configuration.h", | 7 "configuration.h", |
8 "embedder.h", | 8 "embedder.h", |
9 "embedder_internal.h", | 9 "embedder_internal.h", |
10 "named_platform_channel_pair.h", | |
11 "platform_channel_pair.h", | 10 "platform_channel_pair.h", |
12 "platform_handle.h", | 11 "platform_handle.h", |
13 "platform_handle_utils.h", | 12 "platform_handle_utils.h", |
14 "process_delegate.h", | 13 "process_delegate.h", |
15 "scoped_platform_handle.h", | 14 "scoped_platform_handle.h", |
16 ] | 15 ] |
17 | 16 |
18 public_deps = [ | 17 public_deps = [ |
19 "//base", | 18 "//base", |
20 "//mojo/public/cpp/system", | 19 "//mojo/public/cpp/system", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 65 |
67 source_set("platform") { | 66 source_set("platform") { |
68 # This isn't really a standalone target; it must be linked into the | 67 # This isn't really a standalone target; it must be linked into the |
69 # mojo_system_impl component. | 68 # mojo_system_impl component. |
70 visibility = [ | 69 visibility = [ |
71 ":embedder", | 70 ":embedder", |
72 "//mojo/edk/system", | 71 "//mojo/edk/system", |
73 ] | 72 ] |
74 | 73 |
75 sources = [ | 74 sources = [ |
76 "named_platform_channel_pair.h", | |
77 "named_platform_channel_pair_win.cc", | |
78 "platform_channel_pair.cc", | 75 "platform_channel_pair.cc", |
79 "platform_channel_pair.h", | 76 "platform_channel_pair.h", |
80 "platform_channel_pair_posix.cc", | 77 "platform_channel_pair_posix.cc", |
81 "platform_channel_pair_win.cc", | 78 "platform_channel_pair_win.cc", |
82 "platform_channel_utils_posix.cc", | 79 "platform_channel_utils_posix.cc", |
83 "platform_channel_utils_posix.h", | 80 "platform_channel_utils_posix.h", |
84 "platform_handle.cc", | 81 "platform_handle.cc", |
85 "platform_handle.h", | 82 "platform_handle.h", |
86 "platform_handle_utils.h", | 83 "platform_handle_utils.h", |
87 "platform_handle_utils_posix.cc", | 84 "platform_handle_utils_posix.cc", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 | 141 |
145 deps = [ | 142 deps = [ |
146 "//base", | 143 "//base", |
147 "//base/test:test_support", | 144 "//base/test:test_support", |
148 "//mojo/edk/system", | 145 "//mojo/edk/system", |
149 "//mojo/edk/system:test_utils", | 146 "//mojo/edk/system:test_utils", |
150 "//mojo/edk/test:test_support", | 147 "//mojo/edk/test:test_support", |
151 "//testing/gtest", | 148 "//testing/gtest", |
152 ] | 149 ] |
153 } | 150 } |
OLD | NEW |