| 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 20 matching lines...) Expand all Loading... |
| 31 "//components/nacl:nacl", | 31 "//components/nacl:nacl", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 sources = [ | 34 sources = [ |
| 35 "configuration.h", | 35 "configuration.h", |
| 36 "embedder.cc", | 36 "embedder.cc", |
| 37 "embedder.h", | 37 "embedder.h", |
| 38 "embedder_internal.h", | 38 "embedder_internal.h", |
| 39 "entrypoints.cc", | 39 "entrypoints.cc", |
| 40 "entrypoints.h", | 40 "entrypoints.h", |
| 41 "scoped_ipc_support.cc", |
| 42 "scoped_ipc_support.h", |
| 41 | 43 |
| 42 # Test-only code: | 44 # Test-only code: |
| 43 # TODO(vtl): It's a little unfortunate that these end up in the same | 45 # TODO(vtl): It's a little unfortunate that these end up in the same |
| 44 # component as non-test-only code. In the static build, this code should | 46 # component as non-test-only code. In the static build, this code should |
| 45 # hopefully be dead-stripped. | 47 # hopefully be dead-stripped. |
| 46 "test_embedder.cc", | 48 "test_embedder.cc", |
| 47 "test_embedder.h", | 49 "test_embedder.h", |
| 48 ] | 50 ] |
| 49 | 51 |
| 50 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] | 52 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 146 |
| 145 deps = [ | 147 deps = [ |
| 146 "//base", | 148 "//base", |
| 147 "//base/test:test_support", | 149 "//base/test:test_support", |
| 148 "//mojo/edk/system", | 150 "//mojo/edk/system", |
| 149 "//mojo/edk/system:test_utils", | 151 "//mojo/edk/system:test_utils", |
| 150 "//mojo/edk/test:test_support", | 152 "//mojo/edk/test:test_support", |
| 151 "//testing/gtest", | 153 "//testing/gtest", |
| 152 ] | 154 ] |
| 153 } | 155 } |
| OLD | NEW |