tuple: update to make use of C++11
[chromium-blink-merge.git] / mojo / edk / mojo_edk_system_impl.gypi
blobbab747b7b33c55f781fd18c42b8e73c9aa215944
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
3 # found in the LICENSE file.
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
7 # this .gypi file so the sections aren't duplicated.
9   'defines': [
10     'MOJO_SYSTEM_IMPL_IMPLEMENTATION',
11     'MOJO_SYSTEM_IMPLEMENTATION',
12     'MOJO_USE_SYSTEM_IMPL',
13   ],
14   'sources': [
15     'embedder/configuration.h',
16     'embedder/channel_info_forward.h',
17     'embedder/channel_init.cc',
18     'embedder/channel_init.h',
19     'embedder/embedder.cc',
20     'embedder/embedder.h',
21     'embedder/embedder_internal.h',
22     'embedder/entrypoints.cc',
23     'embedder/platform_channel_pair.cc',
24     'embedder/platform_channel_pair.h',
25     'embedder/platform_channel_pair_posix.cc',
26     'embedder/platform_channel_pair_win.cc',
27     'embedder/platform_channel_utils_posix.cc',
28     'embedder/platform_channel_utils_posix.h',
29     'embedder/platform_handle.cc',
30     'embedder/platform_handle.h',
31     'embedder/platform_handle_utils.h',
32     'embedder/platform_handle_utils_posix.cc',
33     'embedder/platform_handle_utils_win.cc',
34     'embedder/platform_handle_vector.h',
35     'embedder/platform_shared_buffer.h',
36     'embedder/platform_support.h',
37     'embedder/scoped_platform_handle.h',
38     'embedder/simple_platform_shared_buffer.cc',
39     'embedder/simple_platform_shared_buffer.h',
40     'embedder/simple_platform_shared_buffer_android.cc',
41     'embedder/simple_platform_shared_buffer_posix.cc',
42     'embedder/simple_platform_shared_buffer_win.cc',
43     'embedder/simple_platform_support.cc',
44     'embedder/simple_platform_support.h',
45     'system/awakable.h',
46     'system/awakable_list.cc',
47     'system/awakable_list.h',
48     'system/channel.cc',
49     'system/channel.h',
50     'system/channel_endpoint.cc',
51     'system/channel_endpoint.h',
52     'system/channel_endpoint_client.h',
53     'system/channel_endpoint_id.cc',
54     'system/channel_endpoint_id.h',
55     'system/channel_info.cc',
56     'system/channel_info.h',
57     'system/channel_manager.cc',
58     'system/channel_manager.h',
59     'system/configuration.cc',
60     'system/configuration.h',
61     'system/core.cc',
62     'system/core.h',
63     'system/data_pipe.cc',
64     'system/data_pipe.h',
65     'system/data_pipe_consumer_dispatcher.cc',
66     'system/data_pipe_consumer_dispatcher.h',
67     'system/data_pipe_producer_dispatcher.cc',
68     'system/data_pipe_producer_dispatcher.h',
69     'system/dispatcher.cc',
70     'system/dispatcher.h',
71     'system/endpoint_relayer.cc',
72     'system/endpoint_relayer.h',
73     'system/handle_signals_state.h',
74     'system/handle_table.cc',
75     'system/handle_table.h',
76     'system/local_data_pipe.cc',
77     'system/local_data_pipe.h',
78     'system/local_message_pipe_endpoint.cc',
79     'system/local_message_pipe_endpoint.h',
80     'system/mapping_table.cc',
81     'system/mapping_table.h',
82     'system/memory.cc',
83     'system/memory.h',
84     'system/message_in_transit.cc',
85     'system/message_in_transit.h',
86     'system/message_in_transit_queue.cc',
87     'system/message_in_transit_queue.h',
88     'system/message_pipe.cc',
89     'system/message_pipe.h',
90     'system/message_pipe_dispatcher.cc',
91     'system/message_pipe_dispatcher.h',
92     'system/message_pipe_endpoint.cc',
93     'system/message_pipe_endpoint.h',
94     'system/options_validation.h',
95     'system/platform_handle_dispatcher.cc',
96     'system/platform_handle_dispatcher.h',
97     'system/proxy_message_pipe_endpoint.cc',
98     'system/proxy_message_pipe_endpoint.h',
99     'system/raw_channel.cc',
100     'system/raw_channel.h',
101     'system/raw_channel_posix.cc',
102     'system/raw_channel_win.cc',
103     'system/shared_buffer_dispatcher.cc',
104     'system/shared_buffer_dispatcher.h',
105     'system/simple_dispatcher.cc',
106     'system/simple_dispatcher.h',
107     'system/transport_data.cc',
108     'system/transport_data.h',
109     'system/waiter.cc',
110     'system/waiter.h',
111     # Test-only code:
112     # TODO(vtl): It's a little unfortunate that these end up in the same
113     # component as non-test-only code. In the static build, this code
114     # should hopefully be dead-stripped.
115     'embedder/test_embedder.cc',
116     'embedder/test_embedder.h',
117   ],
118   'all_dependent_settings': {
119     # Ensures that dependent projects import the core functions on Windows.
120     'defines': ['MOJO_USE_SYSTEM_IMPL'],
121   },
122   'conditions': [
123     ['OS=="android"', {
124       "dependencies": [
125         "<(DEPTH)/third_party/ashmem/ashmem.gyp:ashmem",
126       ],
127     }],
128   ],