| 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 mojo_edk_source_set("embedder") { | 7 mojo_edk_source_set("embedder") { |
| 8 # This isn't really a standalone target; it must be linked into the | 8 # This isn't really a standalone target; it must be linked into the |
| 9 # mojo_system_impl component. | 9 # mojo_system_impl component. |
| 10 mojo_edk_visibility = [ "mojo/edk/system" ] | 10 mojo_edk_visibility = [ "mojo/edk/system" ] |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 # mojo_system_impl component. | 49 # mojo_system_impl component. |
| 50 visibility = [ ":embedder" ] | 50 visibility = [ ":embedder" ] |
| 51 | 51 |
| 52 mojo_edk_visibility = [ "mojo/edk/system/*" ] | 52 mojo_edk_visibility = [ "mojo/edk/system/*" ] |
| 53 | 53 |
| 54 sources = [ | 54 sources = [ |
| 55 "platform_channel_pair.cc", | 55 "platform_channel_pair.cc", |
| 56 "platform_channel_pair.h", | 56 "platform_channel_pair.h", |
| 57 "platform_channel_utils.cc", | 57 "platform_channel_utils.cc", |
| 58 "platform_channel_utils.h", | 58 "platform_channel_utils.h", |
| 59 "platform_handle_utils.h", | |
| 60 "platform_handle_utils_posix.cc", | |
| 61 "platform_shared_buffer.h", | 59 "platform_shared_buffer.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" ] |
| 70 | 68 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 ] | 110 ] |
| 113 | 111 |
| 114 mojo_edk_deps = [ | 112 mojo_edk_deps = [ |
| 115 "mojo/edk/base_edk", | 113 "mojo/edk/base_edk", |
| 116 "mojo/edk/test:test_support", | 114 "mojo/edk/test:test_support", |
| 117 "mojo/edk/system", | 115 "mojo/edk/system", |
| 118 "mojo/edk/system/test", | 116 "mojo/edk/system/test", |
| 119 "mojo/edk/util", | 117 "mojo/edk/util", |
| 120 ] | 118 ] |
| 121 } | 119 } |
| OLD | NEW |