| 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 "embedder.h", | 10 "embedder.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 source_set("embedder") { | 28 source_set("embedder") { |
| 29 # This isn't really a standalone target; it must be linked into the | 29 # This isn't really a standalone target; it must be linked into the |
| 30 # mojo_system_impl component. | 30 # mojo_system_impl component. |
| 31 visibility = [ | 31 visibility = [ |
| 32 "//mojo/edk/system", | 32 "//mojo/edk/system", |
| 33 "//components/nacl:nacl", | 33 "//components/nacl:nacl", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 sources = [ | 36 sources = [ |
| 37 "configuration.h", | 37 "configuration.h", |
| 38 "connection_param.cc", |
| 39 "connection_param.h", |
| 38 "embedder.cc", | 40 "embedder.cc", |
| 39 "embedder.h", | 41 "embedder.h", |
| 40 "embedder_internal.h", | 42 "embedder_internal.h", |
| 41 "entrypoints.cc", | 43 "entrypoints.cc", |
| 42 "entrypoints.h", | 44 "entrypoints.h", |
| 43 "pending_process_connection.cc", | 45 "pending_process_connection.cc", |
| 44 "scoped_ipc_support.cc", | 46 "scoped_ipc_support.cc", |
| 45 "scoped_ipc_support.h", | 47 "scoped_ipc_support.h", |
| 46 | 48 |
| 47 # Test-only code: | 49 # Test-only code: |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 137 |
| 136 deps = [ | 138 deps = [ |
| 137 "//base", | 139 "//base", |
| 138 "//base/test:test_support", | 140 "//base/test:test_support", |
| 139 "//mojo/edk/system", | 141 "//mojo/edk/system", |
| 140 "//mojo/edk/system:test_utils", | 142 "//mojo/edk/system:test_utils", |
| 141 "//mojo/edk/test:test_support", | 143 "//mojo/edk/test:test_support", |
| 142 "//testing/gtest", | 144 "//testing/gtest", |
| 143 ] | 145 ] |
| 144 } | 146 } |
| OLD | NEW |