| OLD | NEW |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 # The dictionary here is defined for use by the "mojo_system_impl" and | 5 # The dictionary here is defined for use by the "mojo_system_impl" and |
| 6 # "mojo_system_impl_win64" targets in mojo/edk/mojo_edk.gyp. It's defined in | 6 # "mojo_system_impl_win64" targets in mojo/edk/mojo_edk.gyp. It's defined in |
| 7 # this .gypi file so the sections aren't duplicated. | 7 # this .gypi file so the sections aren't duplicated. |
| 8 { | 8 { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', | 10 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'embedder/platform_shared_buffer.h', | 35 'embedder/platform_shared_buffer.h', |
| 36 'embedder/platform_support.h', | 36 'embedder/platform_support.h', |
| 37 'embedder/scoped_platform_handle.h', | 37 'embedder/scoped_platform_handle.h', |
| 38 'embedder/simple_platform_shared_buffer.cc', | 38 'embedder/simple_platform_shared_buffer.cc', |
| 39 'embedder/simple_platform_shared_buffer.h', | 39 'embedder/simple_platform_shared_buffer.h', |
| 40 'embedder/simple_platform_shared_buffer_android.cc', | 40 'embedder/simple_platform_shared_buffer_android.cc', |
| 41 'embedder/simple_platform_shared_buffer_posix.cc', | 41 'embedder/simple_platform_shared_buffer_posix.cc', |
| 42 'embedder/simple_platform_shared_buffer_win.cc', | 42 'embedder/simple_platform_shared_buffer_win.cc', |
| 43 'embedder/simple_platform_support.cc', | 43 'embedder/simple_platform_support.cc', |
| 44 'embedder/simple_platform_support.h', | 44 'embedder/simple_platform_support.h', |
| 45 'system/async_waiter.cc', |
| 46 'system/async_waiter.h', |
| 45 'system/awakable.h', | 47 'system/awakable.h', |
| 46 'system/awakable_list.cc', | 48 'system/awakable_list.cc', |
| 47 'system/awakable_list.h', | 49 'system/awakable_list.h', |
| 48 'system/channel.cc', | 50 'system/channel.cc', |
| 49 'system/channel.h', | 51 'system/channel.h', |
| 50 'system/channel_endpoint.cc', | 52 'system/channel_endpoint.cc', |
| 51 'system/channel_endpoint.h', | 53 'system/channel_endpoint.h', |
| 52 'system/channel_endpoint_client.h', | 54 'system/channel_endpoint_client.h', |
| 53 'system/channel_endpoint_id.cc', | 55 'system/channel_endpoint_id.cc', |
| 54 'system/channel_endpoint_id.h', | 56 'system/channel_endpoint_id.h', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 # component as non-test-only code. In the static build, this code | 117 # component as non-test-only code. In the static build, this code |
| 116 # should hopefully be dead-stripped. | 118 # should hopefully be dead-stripped. |
| 117 'embedder/test_embedder.cc', | 119 'embedder/test_embedder.cc', |
| 118 'embedder/test_embedder.h', | 120 'embedder/test_embedder.h', |
| 119 ], | 121 ], |
| 120 'all_dependent_settings': { | 122 'all_dependent_settings': { |
| 121 # Ensures that dependent projects import the core functions on Windows. | 123 # Ensures that dependent projects import the core functions on Windows. |
| 122 'defines': ['MOJO_USE_SYSTEM_IMPL'], | 124 'defines': ['MOJO_USE_SYSTEM_IMPL'], |
| 123 }, | 125 }, |
| 124 } | 126 } |
| OLD | NEW |