| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'system/data_pipe_consumer_dispatcher.h', | 66 'system/data_pipe_consumer_dispatcher.h', |
| 67 'system/data_pipe_producer_dispatcher.cc', | 67 'system/data_pipe_producer_dispatcher.cc', |
| 68 'system/data_pipe_producer_dispatcher.h', | 68 'system/data_pipe_producer_dispatcher.h', |
| 69 'system/dispatcher.cc', | 69 'system/dispatcher.cc', |
| 70 'system/dispatcher.h', | 70 'system/dispatcher.h', |
| 71 'system/endpoint_relayer.cc', | 71 'system/endpoint_relayer.cc', |
| 72 'system/endpoint_relayer.h', | 72 'system/endpoint_relayer.h', |
| 73 'system/handle_signals_state.h', | 73 'system/handle_signals_state.h', |
| 74 'system/handle_table.cc', | 74 'system/handle_table.cc', |
| 75 'system/handle_table.h', | 75 'system/handle_table.h', |
| 76 'system/incoming_endpoint.cc', |
| 77 'system/incoming_endpoint.h', |
| 76 'system/local_data_pipe.cc', | 78 'system/local_data_pipe.cc', |
| 77 'system/local_data_pipe.h', | 79 'system/local_data_pipe.h', |
| 78 'system/local_message_pipe_endpoint.cc', | 80 'system/local_message_pipe_endpoint.cc', |
| 79 'system/local_message_pipe_endpoint.h', | 81 'system/local_message_pipe_endpoint.h', |
| 80 'system/mapping_table.cc', | 82 'system/mapping_table.cc', |
| 81 'system/mapping_table.h', | 83 'system/mapping_table.h', |
| 82 'system/memory.cc', | 84 'system/memory.cc', |
| 83 'system/memory.h', | 85 'system/memory.h', |
| 84 'system/message_in_transit.cc', | 86 'system/message_in_transit.cc', |
| 85 'system/message_in_transit.h', | 87 'system/message_in_transit.h', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 114 # should hopefully be dead-stripped. | 116 # should hopefully be dead-stripped. |
| 115 'embedder/test_embedder.cc', | 117 'embedder/test_embedder.cc', |
| 116 'embedder/test_embedder.h', | 118 'embedder/test_embedder.h', |
| 117 ], | 119 ], |
| 118 'all_dependent_settings': { | 120 'all_dependent_settings': { |
| 119 # Ensures that dependent projects import the core functions on Windows. | 121 # Ensures that dependent projects import the core functions on Windows. |
| 120 'defines': ['MOJO_USE_SYSTEM_IMPL'], | 122 'defines': ['MOJO_USE_SYSTEM_IMPL'], |
| 121 }, | 123 }, |
| 122 'conditions': [ | 124 'conditions': [ |
| 123 ['OS=="android"', { | 125 ['OS=="android"', { |
| 124 "dependencies": [ | 126 'dependencies': [ |
| 125 "<(DEPTH)/third_party/ashmem/ashmem.gyp:ashmem", | 127 '<(DEPTH)/third_party/ashmem/ashmem.gyp:ashmem', |
| 126 ], | 128 ], |
| 127 }], | 129 }], |
| 128 ], | 130 ], |
| 129 } | 131 } |
| OLD | NEW |