| 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 third_party/mojo/mojo_edk.gyp. It's define
d in this | 6 # "mojo_system_impl_win64" targets in third_party/mojo/mojo_edk.gyp. It's define
d in this |
| 7 # .gypi file so the sections aren't duplicated. | 7 # .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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 'src/mojo/edk/system/shared_buffer_dispatcher.h', | 123 'src/mojo/edk/system/shared_buffer_dispatcher.h', |
| 124 'src/mojo/edk/system/simple_dispatcher.cc', | 124 'src/mojo/edk/system/simple_dispatcher.cc', |
| 125 'src/mojo/edk/system/simple_dispatcher.h', | 125 'src/mojo/edk/system/simple_dispatcher.h', |
| 126 'src/mojo/edk/system/slave_connection_manager.cc', | 126 'src/mojo/edk/system/slave_connection_manager.cc', |
| 127 'src/mojo/edk/system/slave_connection_manager.h', | 127 'src/mojo/edk/system/slave_connection_manager.h', |
| 128 'src/mojo/edk/system/thread_annotations.h', | 128 'src/mojo/edk/system/thread_annotations.h', |
| 129 'src/mojo/edk/system/transport_data.cc', | 129 'src/mojo/edk/system/transport_data.cc', |
| 130 'src/mojo/edk/system/transport_data.h', | 130 'src/mojo/edk/system/transport_data.h', |
| 131 'src/mojo/edk/system/unique_identifier.cc', | 131 'src/mojo/edk/system/unique_identifier.cc', |
| 132 'src/mojo/edk/system/unique_identifier.h', | 132 'src/mojo/edk/system/unique_identifier.h', |
| 133 'src/mojo/edk/system/wait_set_dispatcher.cc', |
| 134 'src/mojo/edk/system/wait_set_dispatcher.h', |
| 133 'src/mojo/edk/system/waiter.cc', | 135 'src/mojo/edk/system/waiter.cc', |
| 134 'src/mojo/edk/system/waiter.h', | 136 'src/mojo/edk/system/waiter.h', |
| 135 # Test-only code: | 137 # Test-only code: |
| 136 # TODO(vtl): It's a little unfortunate that these end up in the same | 138 # TODO(vtl): It's a little unfortunate that these end up in the same |
| 137 # component as non-test-only code. In the static build, this code | 139 # component as non-test-only code. In the static build, this code |
| 138 # should hopefully be dead-stripped. | 140 # should hopefully be dead-stripped. |
| 139 'src/mojo/edk/embedder/test_embedder.cc', | 141 'src/mojo/edk/embedder/test_embedder.cc', |
| 140 'src/mojo/edk/embedder/test_embedder.h', | 142 'src/mojo/edk/embedder/test_embedder.h', |
| 141 ], | 143 ], |
| 142 'all_dependent_settings': { | 144 'all_dependent_settings': { |
| 143 # Ensures that dependent projects import the core functions on Windows. | 145 # Ensures that dependent projects import the core functions on Windows. |
| 144 'defines': ['MOJO_USE_SYSTEM_IMPL'], | 146 'defines': ['MOJO_USE_SYSTEM_IMPL'], |
| 145 }, | 147 }, |
| 146 'conditions': [ | 148 'conditions': [ |
| 147 ['OS=="android"', { | 149 ['OS=="android"', { |
| 148 'dependencies': [ | 150 'dependencies': [ |
| 149 '<(DEPTH)/third_party/ashmem/ashmem.gyp:ashmem', | 151 '<(DEPTH)/third_party/ashmem/ashmem.gyp:ashmem', |
| 150 ], | 152 ], |
| 151 }], | 153 }], |
| 152 ], | 154 ], |
| 153 } | 155 } |
| OLD | NEW |