| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 mojo_edk_visibility = [ | 55 mojo_edk_visibility = [ |
| 56 "mojo/edk/system", | 56 "mojo/edk/system", |
| 57 "mojo/edk/system:test_utils", | 57 "mojo/edk/system:test_utils", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 sources = [ | 60 sources = [ |
| 61 "platform_channel_pair.cc", | 61 "platform_channel_pair.cc", |
| 62 "platform_channel_pair.h", | 62 "platform_channel_pair.h", |
| 63 "platform_channel_pair_posix.cc", | 63 "platform_channel_pair_posix.cc", |
| 64 "platform_channel_pair_win.cc", | |
| 65 "platform_channel_utils_posix.cc", | 64 "platform_channel_utils_posix.cc", |
| 66 "platform_channel_utils_posix.h", | 65 "platform_channel_utils_posix.h", |
| 67 "platform_handle.cc", | 66 "platform_handle.cc", |
| 68 "platform_handle.h", | 67 "platform_handle.h", |
| 69 "platform_handle_utils.h", | 68 "platform_handle_utils.h", |
| 70 "platform_handle_utils_posix.cc", | 69 "platform_handle_utils_posix.cc", |
| 71 "platform_handle_utils_win.cc", | |
| 72 "platform_handle_vector.h", | 70 "platform_handle_vector.h", |
| 73 "platform_shared_buffer.h", | 71 "platform_shared_buffer.h", |
| 74 "platform_support.h", | 72 "platform_support.h", |
| 75 "scoped_platform_handle.h", | 73 "scoped_platform_handle.h", |
| 76 "simple_platform_shared_buffer.cc", | 74 "simple_platform_shared_buffer.cc", |
| 77 "simple_platform_shared_buffer.h", | 75 "simple_platform_shared_buffer.h", |
| 78 "simple_platform_shared_buffer_android.cc", | 76 "simple_platform_shared_buffer_android.cc", |
| 79 "simple_platform_shared_buffer_posix.cc", | 77 "simple_platform_shared_buffer_posix.cc", |
| 80 "simple_platform_shared_buffer_win.cc", | |
| 81 "simple_platform_support.cc", | 78 "simple_platform_support.cc", |
| 82 "simple_platform_support.h", | 79 "simple_platform_support.h", |
| 83 ] | 80 ] |
| 84 | 81 |
| 85 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] | 82 defines = [ "MOJO_SYSTEM_IMPL_IMPLEMENTATION" ] |
| 86 | 83 |
| 87 mojo_edk_configs = [ "mojo/edk/system:system_config" ] | 84 mojo_edk_configs = [ "mojo/edk/system:system_config" ] |
| 88 | 85 |
| 89 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] | 86 mojo_sdk_public_deps = [ "mojo/public/cpp/system" ] |
| 90 | 87 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "//testing/gtest", | 134 "//testing/gtest", |
| 138 ] | 135 ] |
| 139 | 136 |
| 140 mojo_edk_deps = [ | 137 mojo_edk_deps = [ |
| 141 "mojo/edk/test:test_support", | 138 "mojo/edk/test:test_support", |
| 142 "mojo/edk/system", | 139 "mojo/edk/system", |
| 143 "mojo/edk/system:test_utils", | 140 "mojo/edk/system:test_utils", |
| 144 "mojo/edk/util", | 141 "mojo/edk/util", |
| 145 ] | 142 ] |
| 146 } | 143 } |
| OLD | NEW |