| 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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
| 6 | 6 |
| 7 # TODO(vtl): Move multiprocess stuff into a separate target. | 7 # TODO(vtl): Move multiprocess stuff into a separate target. |
| 8 mojo_edk_source_set("embedder") { | 8 mojo_edk_source_set("embedder") { |
| 9 # This isn't really a standalone target; it must be linked into the | 9 # This isn't really a standalone target; it must be linked into the |
| 10 # mojo_system_impl component. | 10 # mojo_system_impl component. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 } | 48 } |
| 49 | 49 |
| 50 mojo_edk_source_set("platform") { | 50 mojo_edk_source_set("platform") { |
| 51 # This isn't really a standalone target; it must be linked into the | 51 # This isn't really a standalone target; it must be linked into the |
| 52 # mojo_system_impl component. | 52 # mojo_system_impl component. |
| 53 visibility = [ ":embedder" ] | 53 visibility = [ ":embedder" ] |
| 54 | 54 |
| 55 mojo_edk_visibility = [ "mojo/edk/system/*" ] | 55 mojo_edk_visibility = [ "mojo/edk/system/*" ] |
| 56 | 56 |
| 57 sources = [ | 57 sources = [ |
| 58 "platform_channel_pair.cc", | |
| 59 "platform_channel_pair.h", | |
| 60 "platform_channel_utils.cc", | 58 "platform_channel_utils.cc", |
| 61 "platform_channel_utils.h", | 59 "platform_channel_utils.h", |
| 62 "platform_support.h", | 60 "platform_support.h", |
| 63 "simple_platform_shared_buffer.cc", | 61 "simple_platform_shared_buffer.cc", |
| 64 "simple_platform_shared_buffer.h", | 62 "simple_platform_shared_buffer.h", |
| 65 "simple_platform_support.cc", | 63 "simple_platform_support.cc", |
| 66 "simple_platform_support.h", | 64 "simple_platform_support.h", |
| 67 ] | 65 ] |
| 68 | 66 |
| 69 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] | 67 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 ] | 112 ] |
| 115 | 113 |
| 116 mojo_edk_deps = [ | 114 mojo_edk_deps = [ |
| 117 "mojo/edk/base_edk", | 115 "mojo/edk/base_edk", |
| 118 "mojo/edk/test:test_support", | 116 "mojo/edk/test:test_support", |
| 119 "mojo/edk/system", | 117 "mojo/edk/system", |
| 120 "mojo/edk/system/test", | 118 "mojo/edk/system/test", |
| 121 "mojo/edk/util", | 119 "mojo/edk/util", |
| 122 ] | 120 ] |
| 123 } | 121 } |
| OLD | NEW |