| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'mojo_edk_ports_sources': [ | 7 'mojo_edk_ports_sources': [ |
| 8 'edk/system/ports/event.cc', | 8 'edk/system/ports/event.cc', |
| 9 'edk/system/ports/event.h', | 9 'edk/system/ports/event.h', |
| 10 'edk/system/ports/message.cc', | 10 'edk/system/ports/message.cc', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'edk/embedder/embedder.cc', | 28 'edk/embedder/embedder.cc', |
| 29 'edk/embedder/embedder.h', | 29 'edk/embedder/embedder.h', |
| 30 'edk/embedder/embedder_internal.h', | 30 'edk/embedder/embedder_internal.h', |
| 31 'edk/embedder/entrypoints.cc', | 31 'edk/embedder/entrypoints.cc', |
| 32 'edk/embedder/named_platform_channel_pair_win.cc', | 32 'edk/embedder/named_platform_channel_pair_win.cc', |
| 33 'edk/embedder/named_platform_channel_pair.h', | 33 'edk/embedder/named_platform_channel_pair.h', |
| 34 'edk/embedder/platform_channel_pair.cc', | 34 'edk/embedder/platform_channel_pair.cc', |
| 35 'edk/embedder/platform_channel_pair.h', | 35 'edk/embedder/platform_channel_pair.h', |
| 36 'edk/embedder/platform_channel_pair_posix.cc', | 36 'edk/embedder/platform_channel_pair_posix.cc', |
| 37 'edk/embedder/platform_channel_pair_win.cc', | 37 'edk/embedder/platform_channel_pair_win.cc', |
| 38 'edk/embedder/platform_channel_utils_posix.cc', | |
| 39 'edk/embedder/platform_channel_utils_posix.h', | |
| 40 'edk/embedder/platform_handle.cc', | 38 'edk/embedder/platform_handle.cc', |
| 41 'edk/embedder/platform_handle.h', | 39 'edk/embedder/platform_handle.h', |
| 42 'edk/embedder/platform_handle_utils.h', | 40 'edk/embedder/platform_handle_utils.h', |
| 43 'edk/embedder/platform_handle_utils_posix.cc', | 41 'edk/embedder/platform_handle_utils_posix.cc', |
| 44 'edk/embedder/platform_handle_utils_win.cc', | 42 'edk/embedder/platform_handle_utils_win.cc', |
| 45 'edk/embedder/platform_handle_vector.h', | 43 'edk/embedder/platform_handle_vector.h', |
| 46 'edk/embedder/platform_shared_buffer.cc', | 44 'edk/embedder/platform_shared_buffer.cc', |
| 47 'edk/embedder/platform_shared_buffer.h', | 45 'edk/embedder/platform_shared_buffer.h', |
| 48 'edk/embedder/scoped_platform_handle.h', | 46 'edk/embedder/scoped_platform_handle.h', |
| 49 'edk/system/awakable.h', | 47 'edk/system/awakable.h', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 'edk/system/watcher_set.cc', | 97 'edk/system/watcher_set.cc', |
| 100 'edk/system/watcher_set.h', | 98 'edk/system/watcher_set.h', |
| 101 # Test-only code: | 99 # Test-only code: |
| 102 # TODO(vtl): It's a little unfortunate that these end up in the same | 100 # TODO(vtl): It's a little unfortunate that these end up in the same |
| 103 # component as non-test-only code. In the static build, this code | 101 # component as non-test-only code. In the static build, this code |
| 104 # should hopefully be dead-stripped. | 102 # should hopefully be dead-stripped. |
| 105 'edk/embedder/test_embedder.cc', | 103 'edk/embedder/test_embedder.cc', |
| 106 'edk/embedder/test_embedder.h', | 104 'edk/embedder/test_embedder.h', |
| 107 ], | 105 ], |
| 108 'mojo_edk_system_impl_non_nacl_sources': [ | 106 'mojo_edk_system_impl_non_nacl_sources': [ |
| 107 'edk/embedder/platform_channel_utils_posix.cc', |
| 108 'edk/embedder/platform_channel_utils_posix.h', |
| 109 'edk/system/broker_host_posix.cc', | 109 'edk/system/broker_host_posix.cc', |
| 110 'edk/system/broker_posix.cc', | 110 'edk/system/broker_posix.cc', |
| 111 'edk/system/channel_posix.cc', | 111 'edk/system/channel_posix.cc', |
| 112 'edk/system/remote_message_pipe_bootstrap.cc', | 112 'edk/system/remote_message_pipe_bootstrap.cc', |
| 113 ], | 113 ], |
| 114 'mojo_edk_system_impl_nacl_nonsfi_sources': [ |
| 115 'edk/embedder/platform_channel_utils_posix.cc', |
| 116 'edk/embedder/platform_channel_utils_posix.h', |
| 117 'edk/system/broker_posix.cc', |
| 118 'edk/system/channel_posix.cc', |
| 119 ], |
| 114 }, | 120 }, |
| 115 } | 121 } |
| OLD | NEW |