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

Side by Side Diff: mojo/mojo.gyp

Issue 346633002: Move channel_init out of mojo_common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix gn build Created 6 years, 6 months 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['mojo_shell_debug_url != ""', { 8 ['mojo_shell_debug_url != ""', {
9 'defines': [ 9 'defines': [
10 'MOJO_SHELL_DEBUG=1', 10 'MOJO_SHELL_DEBUG=1',
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 'dependencies': [ 145 'dependencies': [
146 '../base/base.gyp:base', 146 '../base/base.gyp:base',
147 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 147 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
148 ], 148 ],
149 'defines': [ 149 'defines': [
150 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', 150 'MOJO_SYSTEM_IMPL_IMPLEMENTATION',
151 'MOJO_SYSTEM_IMPLEMENTATION', 151 'MOJO_SYSTEM_IMPLEMENTATION',
152 'MOJO_USE_SYSTEM_IMPL', 152 'MOJO_USE_SYSTEM_IMPL',
153 ], 153 ],
154 'sources': [ 154 'sources': [
155 'embedder/channel_init.cc',
156 'embedder/channel_init.h',
155 'embedder/embedder.cc', 157 'embedder/embedder.cc',
156 'embedder/embedder.h', 158 'embedder/embedder.h',
157 'embedder/platform_channel_pair.cc', 159 'embedder/platform_channel_pair.cc',
158 'embedder/platform_channel_pair.h', 160 'embedder/platform_channel_pair.h',
159 'embedder/platform_channel_pair_posix.cc', 161 'embedder/platform_channel_pair_posix.cc',
160 'embedder/platform_channel_pair_win.cc', 162 'embedder/platform_channel_pair_win.cc',
161 'embedder/platform_channel_utils_posix.cc', 163 'embedder/platform_channel_utils_posix.cc',
162 'embedder/platform_channel_utils_posix.h', 164 'embedder/platform_channel_utils_posix.h',
163 'embedder/platform_handle.cc', 165 'embedder/platform_handle.cc',
164 'embedder/platform_handle.h', 166 'embedder/platform_handle.h',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 'dependencies': [ 327 'dependencies': [
326 '../base/base.gyp:base', 328 '../base/base.gyp:base',
327 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 329 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
328 'mojo_system_impl', 330 'mojo_system_impl',
329 ], 331 ],
330 'export_dependent_settings': [ 332 'export_dependent_settings': [
331 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 333 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
332 'mojo_system_impl', 334 'mojo_system_impl',
333 ], 335 ],
334 'sources': [ 336 'sources': [
335 'common/channel_init.cc',
336 'common/channel_init.h',
337 'common/common_type_converters.cc', 337 'common/common_type_converters.cc',
338 'common/common_type_converters.h', 338 'common/common_type_converters.h',
339 'common/data_pipe_utils.cc', 339 'common/data_pipe_utils.cc',
340 'common/data_pipe_utils.h', 340 'common/data_pipe_utils.h',
341 'common/handle_watcher.cc', 341 'common/handle_watcher.cc',
342 'common/handle_watcher.h', 342 'common/handle_watcher.h',
343 'common/message_pump_mojo.cc', 343 'common/message_pump_mojo.cc',
344 'common/message_pump_mojo.h', 344 'common/message_pump_mojo.h',
345 'common/message_pump_mojo_handler.h', 345 'common/message_pump_mojo_handler.h',
346 'common/time_helper.cc', 346 'common/time_helper.cc',
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
950 'views/native_widget_view_manager.cc', 950 'views/native_widget_view_manager.cc',
951 'views/native_widget_view_manager.h', 951 'views/native_widget_view_manager.h',
952 'views/views_init.cc', 952 'views/views_init.cc',
953 'views/views_init.h', 953 'views/views_init.h',
954 ], 954 ],
955 }, 955 },
956 ], 956 ],
957 }], 957 }],
958 ], 958 ],
959 } 959 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698