Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1019)

Side by Side Diff: mojo/edk/mojo_edk_system_impl.gypi

Issue 779503003: Extract Awakable from Waiter (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Review Update Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | mojo/edk/system/BUILD.gn » ('j') | mojo/edk/system/awakable.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 23 matching lines...) Expand all
34 'embedder/platform_handle_vector.h', 34 'embedder/platform_handle_vector.h',
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_posix.cc', 40 'embedder/simple_platform_shared_buffer_posix.cc',
41 'embedder/simple_platform_shared_buffer_win.cc', 41 'embedder/simple_platform_shared_buffer_win.cc',
42 'embedder/simple_platform_support.cc', 42 'embedder/simple_platform_support.cc',
43 'embedder/simple_platform_support.h', 43 'embedder/simple_platform_support.h',
44 'system/awakable.h',
45 'system/awakable_list.cc',
46 'system/awakable_list.h',
44 'system/channel.cc', 47 'system/channel.cc',
45 'system/channel.h', 48 'system/channel.h',
46 'system/channel_endpoint.cc', 49 'system/channel_endpoint.cc',
47 'system/channel_endpoint.h', 50 'system/channel_endpoint.h',
48 'system/channel_endpoint_client.h', 51 'system/channel_endpoint_client.h',
49 'system/channel_endpoint_id.cc', 52 'system/channel_endpoint_id.cc',
50 'system/channel_endpoint_id.h', 53 'system/channel_endpoint_id.h',
51 'system/channel_info.cc', 54 'system/channel_info.cc',
52 'system/channel_info.h', 55 'system/channel_info.h',
53 'system/channel_manager.cc', 56 'system/channel_manager.cc',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'system/raw_channel_posix.cc', 98 'system/raw_channel_posix.cc',
96 'system/raw_channel_win.cc', 99 'system/raw_channel_win.cc',
97 'system/shared_buffer_dispatcher.cc', 100 'system/shared_buffer_dispatcher.cc',
98 'system/shared_buffer_dispatcher.h', 101 'system/shared_buffer_dispatcher.h',
99 'system/simple_dispatcher.cc', 102 'system/simple_dispatcher.cc',
100 'system/simple_dispatcher.h', 103 'system/simple_dispatcher.h',
101 'system/transport_data.cc', 104 'system/transport_data.cc',
102 'system/transport_data.h', 105 'system/transport_data.h',
103 'system/waiter.cc', 106 'system/waiter.cc',
104 'system/waiter.h', 107 'system/waiter.h',
105 'system/waiter_list.cc',
106 'system/waiter_list.h',
107 # Test-only code: 108 # Test-only code:
108 # TODO(vtl): It's a little unfortunate that these end up in the same 109 # TODO(vtl): It's a little unfortunate that these end up in the same
109 # component as non-test-only code. In the static build, this code 110 # component as non-test-only code. In the static build, this code
110 # should hopefully be dead-stripped. 111 # should hopefully be dead-stripped.
111 'embedder/test_embedder.cc', 112 'embedder/test_embedder.cc',
112 'embedder/test_embedder.h', 113 'embedder/test_embedder.h',
113 ], 114 ],
114 'all_dependent_settings': { 115 'all_dependent_settings': {
115 # Ensures that dependent projects import the core functions on Windows. 116 # Ensures that dependent projects import the core functions on Windows.
116 'defines': ['MOJO_USE_SYSTEM_IMPL'], 117 'defines': ['MOJO_USE_SYSTEM_IMPL'],
117 }, 118 },
118 } 119 }
OLDNEW
« no previous file with comments | « no previous file | mojo/edk/system/BUILD.gn » ('j') | mojo/edk/system/awakable.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698