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 import("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 | 6 |
7 source_set("headers") { | 7 source_set("headers") { |
8 sources = [ | 8 sources = [ |
9 "configuration.h", | 9 "configuration.h", |
| 10 "connection_params.h", |
10 "embedder.h", | 11 "embedder.h", |
11 "embedder_internal.h", | 12 "embedder_internal.h", |
12 "named_platform_channel_pair.h", | 13 "named_platform_channel_pair.h", |
13 "named_platform_handle.h", | 14 "named_platform_handle.h", |
14 "named_platform_handle_utils.h", | 15 "named_platform_handle_utils.h", |
15 "pending_process_connection.h", | 16 "pending_process_connection.h", |
16 "platform_channel_pair.h", | 17 "platform_channel_pair.h", |
17 "platform_handle.h", | 18 "platform_handle.h", |
18 "platform_handle_utils.h", | 19 "platform_handle_utils.h", |
19 "scoped_platform_handle.h", | 20 "scoped_platform_handle.h", |
20 ] | 21 ] |
21 | 22 |
22 public_deps = [ | 23 public_deps = [ |
23 "//base", | 24 "//base", |
24 "//mojo/public/cpp/system", | 25 "//mojo/public/cpp/system", |
25 ] | 26 ] |
26 } | 27 } |
27 | 28 |
28 source_set("embedder") { | 29 source_set("embedder") { |
29 # This isn't really a standalone target; it must be linked into the | 30 # This isn't really a standalone target; it must be linked into the |
30 # mojo_system_impl component. | 31 # mojo_system_impl component. |
31 visibility = [ | 32 visibility = [ |
32 "//mojo/edk/system", | 33 "//mojo/edk/system", |
33 "//components/nacl:nacl", | 34 "//components/nacl:nacl", |
34 ] | 35 ] |
35 | 36 |
36 sources = [ | 37 sources = [ |
37 "configuration.h", | 38 "configuration.h", |
| 39 "connection_params.cc", |
| 40 "connection_params.h", |
38 "embedder.cc", | 41 "embedder.cc", |
39 "embedder.h", | 42 "embedder.h", |
40 "embedder_internal.h", | 43 "embedder_internal.h", |
41 "entrypoints.cc", | 44 "entrypoints.cc", |
42 "entrypoints.h", | 45 "entrypoints.h", |
43 "pending_process_connection.cc", | 46 "pending_process_connection.cc", |
44 "scoped_ipc_support.cc", | 47 "scoped_ipc_support.cc", |
45 "scoped_ipc_support.h", | 48 "scoped_ipc_support.h", |
46 | 49 |
47 # Test-only code: | 50 # Test-only code: |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 | 138 |
136 deps = [ | 139 deps = [ |
137 "//base", | 140 "//base", |
138 "//base/test:test_support", | 141 "//base/test:test_support", |
139 "//mojo/edk/system", | 142 "//mojo/edk/system", |
140 "//mojo/edk/system:test_utils", | 143 "//mojo/edk/system:test_utils", |
141 "//mojo/edk/test:test_support", | 144 "//mojo/edk/test:test_support", |
142 "//testing/gtest", | 145 "//testing/gtest", |
143 ] | 146 ] |
144 } | 147 } |
OLD | NEW |