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

Side by Side Diff: mojo/mojo.gyp

Issue 231353002: Make mojo_system static and mojo_system_impl a component, never use both (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the mac loader path dependencies Created 6 years, 8 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
« no previous file with comments | « mojo/embedder/test_embedder.cc ('k') | mojo/mojo_apps.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 18 matching lines...) Expand all
29 'type': 'none', 29 'type': 'none',
30 'dependencies': [ 30 'dependencies': [
31 'mojo_apps_js_unittests', 31 'mojo_apps_js_unittests',
32 'mojo_bindings', 32 'mojo_bindings',
33 'mojo_compositor_app', 33 'mojo_compositor_app',
34 'mojo_common_lib', 34 'mojo_common_lib',
35 'mojo_common_unittests', 35 'mojo_common_unittests',
36 'mojo_js', 36 'mojo_js',
37 'mojo_js_unittests', 37 'mojo_js_unittests',
38 'mojo_message_generator', 38 'mojo_message_generator',
39 'mojo_native_viewport_service',
39 'mojo_pepper_container_app', 40 'mojo_pepper_container_app',
40 'mojo_public_test_utils', 41 'mojo_public_test_utils',
41 'mojo_public_bindings_unittests', 42 'mojo_public_bindings_unittests',
42 'mojo_public_environment_unittests', 43 'mojo_public_environment_unittests',
43 'mojo_public_system_perftests', 44 'mojo_public_system_perftests',
44 'mojo_public_system_unittests', 45 'mojo_public_system_unittests',
45 'mojo_public_utility_unittests', 46 'mojo_public_utility_unittests',
46 'mojo_sample_app', 47 'mojo_sample_app',
47 'mojo_service_manager', 48 'mojo_service_manager',
48 'mojo_service_manager_unittests', 49 'mojo_service_manager_unittests',
(...skipping 14 matching lines...) Expand all
63 }], 64 }],
64 ] 65 ]
65 }, 66 },
66 { 67 {
67 'target_name': 'mojo_run_all_unittests', 68 'target_name': 'mojo_run_all_unittests',
68 'type': 'static_library', 69 'type': 'static_library',
69 'dependencies': [ 70 'dependencies': [
70 '../base/base.gyp:base', 71 '../base/base.gyp:base',
71 '../base/base.gyp:test_support_base', 72 '../base/base.gyp:test_support_base',
72 '../testing/gtest.gyp:gtest', 73 '../testing/gtest.gyp:gtest',
73 'mojo_system',
74 'mojo_system_impl', 74 'mojo_system_impl',
75 'mojo_test_support', 75 'mojo_test_support',
76 'mojo_test_support_impl', 76 'mojo_test_support_impl',
77 ], 77 ],
78 'sources': [ 78 'sources': [
79 'common/test/run_all_unittests.cc', 79 'common/test/run_all_unittests.cc',
80 ], 80 ],
81 }, 81 },
82 { 82 {
83 'target_name': 'mojo_run_all_perftests', 83 'target_name': 'mojo_run_all_perftests',
84 'type': 'static_library', 84 'type': 'static_library',
85 'dependencies': [ 85 'dependencies': [
86 '../base/base.gyp:test_support_base', 86 '../base/base.gyp:test_support_base',
87 'mojo_system',
88 'mojo_system_impl', 87 'mojo_system_impl',
89 'mojo_test_support', 88 'mojo_test_support',
90 'mojo_test_support_impl', 89 'mojo_test_support_impl',
91 ], 90 ],
92 'sources': [ 91 'sources': [
93 'common/test/run_all_perftests.cc', 92 'common/test/run_all_perftests.cc',
94 ], 93 ],
95 }, 94 },
96 { 95 {
97 'target_name': 'mojo_system_impl', 96 'target_name': 'mojo_system_impl',
98 'type': '<(component)', 97 'type': '<(component)',
99 'dependencies': [ 98 'dependencies': [
100 'mojo_system',
101 '../base/base.gyp:base', 99 '../base/base.gyp:base',
102 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 100 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
103 ], 101 ],
104 'defines': [ 102 'defines': [
105 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', 103 'MOJO_SYSTEM_IMPL_IMPLEMENTATION',
104 'MOJO_SYSTEM_IMPLEMENTATION',
106 ], 105 ],
107 'sources': [ 106 'sources': [
108 'embedder/embedder.cc', 107 'embedder/embedder.cc',
109 'embedder/embedder.h', 108 'embedder/embedder.h',
110 'embedder/platform_channel_pair.cc', 109 'embedder/platform_channel_pair.cc',
111 'embedder/platform_channel_pair.h', 110 'embedder/platform_channel_pair.h',
112 'embedder/platform_channel_pair_posix.cc', 111 'embedder/platform_channel_pair_posix.cc',
113 'embedder/platform_channel_pair_win.cc', 112 'embedder/platform_channel_pair_win.cc',
114 'embedder/platform_channel_utils_posix.cc', 113 'embedder/platform_channel_utils_posix.cc',
115 'embedder/platform_channel_utils_posix.h', 114 'embedder/platform_channel_utils_posix.h',
116 'embedder/platform_handle.cc', 115 'embedder/platform_handle.cc',
117 'embedder/platform_handle.h', 116 'embedder/platform_handle.h',
118 'embedder/scoped_platform_handle.h', 117 'embedder/scoped_platform_handle.h',
119 'system/channel.cc', 118 'system/channel.cc',
120 'system/channel.h', 119 'system/channel.h',
121 'system/constants.h', 120 'system/constants.h',
122 'system/core_impl.cc', 121 'system/core.cc',
123 'system/core_impl.h', 122 'system/core.h',
124 'system/data_pipe.cc', 123 'system/data_pipe.cc',
125 'system/data_pipe.h', 124 'system/data_pipe.h',
126 'system/data_pipe_consumer_dispatcher.cc', 125 'system/data_pipe_consumer_dispatcher.cc',
127 'system/data_pipe_consumer_dispatcher.h', 126 'system/data_pipe_consumer_dispatcher.h',
128 'system/data_pipe_producer_dispatcher.cc', 127 'system/data_pipe_producer_dispatcher.cc',
129 'system/data_pipe_producer_dispatcher.h', 128 'system/data_pipe_producer_dispatcher.h',
130 'system/dispatcher.cc', 129 'system/dispatcher.cc',
131 'system/dispatcher.h', 130 'system/dispatcher.h',
131 'system/entrypoints.cc',
132 'system/handle_table.cc', 132 'system/handle_table.cc',
133 'system/handle_table.h', 133 'system/handle_table.h',
134 'system/local_data_pipe.cc', 134 'system/local_data_pipe.cc',
135 'system/local_data_pipe.h', 135 'system/local_data_pipe.h',
136 'system/local_message_pipe_endpoint.cc', 136 'system/local_message_pipe_endpoint.cc',
137 'system/local_message_pipe_endpoint.h', 137 'system/local_message_pipe_endpoint.h',
138 'system/mapping_table.cc', 138 'system/mapping_table.cc',
139 'system/mapping_table.h', 139 'system/mapping_table.h',
140 'system/memory.cc', 140 'system/memory.cc',
141 'system/memory.h', 141 'system/memory.h',
(...skipping 30 matching lines...) Expand all
172 # component as non-test-only code. In the static build, this code should 172 # component as non-test-only code. In the static build, this code should
173 # hopefully be dead-stripped. 173 # hopefully be dead-stripped.
174 'embedder/test_embedder.cc', 174 'embedder/test_embedder.cc',
175 'embedder/test_embedder.h', 175 'embedder/test_embedder.h',
176 ], 176 ],
177 }, 177 },
178 { 178 {
179 'target_name': 'mojo_system_unittests', 179 'target_name': 'mojo_system_unittests',
180 'type': 'executable', 180 'type': 'executable',
181 'dependencies': [ 181 'dependencies': [
182 '../base/base.gyp:base',
182 '../base/base.gyp:run_all_unittests', 183 '../base/base.gyp:run_all_unittests',
183 '../testing/gtest.gyp:gtest', 184 '../testing/gtest.gyp:gtest',
184 'mojo_common_test_support', 185 'mojo_common_test_support',
185 'mojo_system',
186 'mojo_system_impl', 186 'mojo_system_impl',
187 ], 187 ],
188 'sources': [ 188 'sources': [
189 'embedder/embedder_unittest.cc', 189 'embedder/embedder_unittest.cc',
190 'embedder/platform_channel_pair_posix_unittest.cc', 190 'embedder/platform_channel_pair_posix_unittest.cc',
191 'system/core_impl_unittest.cc', 191 'system/core_unittest.cc',
192 'system/core_test_base.cc', 192 'system/core_test_base.cc',
193 'system/core_test_base.h', 193 'system/core_test_base.h',
194 'system/data_pipe_unittest.cc', 194 'system/data_pipe_unittest.cc',
195 'system/dispatcher_unittest.cc', 195 'system/dispatcher_unittest.cc',
196 'system/local_data_pipe_unittest.cc', 196 'system/local_data_pipe_unittest.cc',
197 'system/message_pipe_dispatcher_unittest.cc', 197 'system/message_pipe_dispatcher_unittest.cc',
198 'system/message_pipe_unittest.cc', 198 'system/message_pipe_unittest.cc',
199 'system/multiprocess_message_pipe_unittest.cc', 199 'system/multiprocess_message_pipe_unittest.cc',
200 'system/raw_channel_unittest.cc', 200 'system/raw_channel_unittest.cc',
201 'system/raw_shared_buffer_unittest.cc', 201 'system/raw_shared_buffer_unittest.cc',
(...skipping 14 matching lines...) Expand all
216 'dependencies': [ 216 'dependencies': [
217 '../base/base.gyp:base', 217 '../base/base.gyp:base',
218 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 218 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
219 '../gpu/gpu.gyp:command_buffer_client', 219 '../gpu/gpu.gyp:command_buffer_client',
220 '../gpu/gpu.gyp:command_buffer_common', 220 '../gpu/gpu.gyp:command_buffer_common',
221 '../gpu/gpu.gyp:gles2_cmd_helper', 221 '../gpu/gpu.gyp:gles2_cmd_helper',
222 '../gpu/gpu.gyp:gles2_implementation', 222 '../gpu/gpu.gyp:gles2_implementation',
223 'mojo_gles2', 223 'mojo_gles2',
224 'mojo_gles2_bindings', 224 'mojo_gles2_bindings',
225 'mojo_environment_chromium', 225 'mojo_environment_chromium',
226 'mojo_system_impl',
226 ], 227 ],
227 'defines': [ 228 'defines': [
228 'MOJO_GLES2_IMPL_IMPLEMENTATION', 229 'MOJO_GLES2_IMPL_IMPLEMENTATION',
229 ], 230 ],
230 'sources': [ 231 'sources': [
231 'gles2/command_buffer_client_impl.cc', 232 'gles2/command_buffer_client_impl.cc',
232 'gles2/command_buffer_client_impl.h', 233 'gles2/command_buffer_client_impl.h',
233 'gles2/gles2_impl_export.h', 234 'gles2/gles2_impl_export.h',
234 'gles2/gles2_support_impl.cc', 235 'gles2/gles2_support_impl.cc',
235 'gles2/gles2_support_impl.h', 236 'gles2/gles2_support_impl.h',
(...skipping 14 matching lines...) Expand all
250 }, 251 },
251 { 252 {
252 'target_name': 'mojo_common_lib', 253 'target_name': 'mojo_common_lib',
253 'type': '<(component)', 254 'type': '<(component)',
254 'defines': [ 255 'defines': [
255 'MOJO_COMMON_IMPLEMENTATION', 256 'MOJO_COMMON_IMPLEMENTATION',
256 ], 257 ],
257 'dependencies': [ 258 'dependencies': [
258 '../base/base.gyp:base', 259 '../base/base.gyp:base',
259 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 260 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
260 'mojo_system', 261 'mojo_system_impl',
262 ],
263 'export_dependent_settings': [
264 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
265 'mojo_system_impl',
261 ], 266 ],
262 'sources': [ 267 'sources': [
263 'common/common_type_converters.cc', 268 'common/common_type_converters.cc',
264 'common/common_type_converters.h', 269 'common/common_type_converters.h',
265 'common/environment_data.cc', 270 'common/environment_data.cc',
266 'common/environment_data.h', 271 'common/environment_data.h',
267 'common/handle_watcher.cc', 272 'common/handle_watcher.cc',
268 'common/handle_watcher.h', 273 'common/handle_watcher.h',
269 'common/message_pump_mojo.cc', 274 'common/message_pump_mojo.cc',
270 'common/message_pump_mojo.h', 275 'common/message_pump_mojo.h',
271 'common/message_pump_mojo_handler.h', 276 'common/message_pump_mojo_handler.h',
272 'common/time_helper.cc', 277 'common/time_helper.cc',
273 'common/time_helper.h', 278 'common/time_helper.h',
274 ], 279 ],
275 }, 280 },
276 { 281 {
277 'target_name': 'mojo_common_test_support', 282 'target_name': 'mojo_common_test_support',
278 'type': 'static_library', 283 'type': 'static_library',
279 'dependencies': [ 284 'dependencies': [
280 '../base/base.gyp:base', 285 '../base/base.gyp:base',
281 '../base/base.gyp:test_support_base', 286 '../base/base.gyp:test_support_base',
282 '../testing/gtest.gyp:gtest', 287 '../testing/gtest.gyp:gtest',
283 'mojo_system',
284 'mojo_system_impl', 288 'mojo_system_impl',
285 ], 289 ],
286 'sources': [ 290 'sources': [
287 'common/test/multiprocess_test_helper.cc', 291 'common/test/multiprocess_test_helper.cc',
288 'common/test/multiprocess_test_helper.h', 292 'common/test/multiprocess_test_helper.h',
289 'common/test/test_utils.h', 293 'common/test/test_utils.h',
290 'common/test/test_utils_posix.cc', 294 'common/test/test_utils_posix.cc',
291 'common/test/test_utils_win.cc', 295 'common/test/test_utils_win.cc',
292 ], 296 ],
293 }, 297 },
294 { 298 {
295 'target_name': 'mojo_common_unittests', 299 'target_name': 'mojo_common_unittests',
296 'type': 'executable', 300 'type': 'executable',
297 'dependencies': [ 301 'dependencies': [
298 '../base/base.gyp:base', 302 '../base/base.gyp:base',
299 '../base/base.gyp:base_message_loop_tests', 303 '../base/base.gyp:base_message_loop_tests',
300 '../testing/gtest.gyp:gtest', 304 '../testing/gtest.gyp:gtest',
301 'mojo_bindings', 305 'mojo_bindings',
302 'mojo_environment_chromium', 306 'mojo_environment_chromium',
303 'mojo_common_lib', 307 'mojo_common_lib',
304 'mojo_common_test_support', 308 'mojo_common_test_support',
305 'mojo_public_test_utils', 309 'mojo_public_test_utils',
306 'mojo_run_all_unittests', 310 'mojo_run_all_unittests',
307 'mojo_system',
308 'mojo_system_impl',
309 ], 311 ],
310 'sources': [ 312 'sources': [
311 'common/common_type_converters_unittest.cc', 313 'common/common_type_converters_unittest.cc',
312 'common/handle_watcher_unittest.cc', 314 'common/handle_watcher_unittest.cc',
313 'common/message_pump_mojo_unittest.cc', 315 'common/message_pump_mojo_unittest.cc',
314 'common/test/multiprocess_test_helper_unittest.cc', 316 'common/test/multiprocess_test_helper_unittest.cc',
315 ], 317 ],
316 }, 318 },
317 { 319 {
318 'target_name': 'mojo_environment_chromium', 320 'target_name': 'mojo_environment_chromium',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 'MOJO_SERVICE_MANAGER_IMPLEMENTATION', 363 'MOJO_SERVICE_MANAGER_IMPLEMENTATION',
362 ], 364 ],
363 'dependencies': [ 365 'dependencies': [
364 '../base/base.gyp:base', 366 '../base/base.gyp:base',
365 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 367 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
366 '../net/net.gyp:net', 368 '../net/net.gyp:net',
367 '../url/url.gyp:url_lib', 369 '../url/url.gyp:url_lib',
368 'mojo_common_lib', 370 'mojo_common_lib',
369 'mojo_environment_chromium', 371 'mojo_environment_chromium',
370 'mojo_shell_bindings', 372 'mojo_shell_bindings',
373 'mojo_system_impl',
371 ], 374 ],
372 'sources': [ 375 'sources': [
373 'service_manager/service_loader.h', 376 'service_manager/service_loader.h',
374 'service_manager/service_manager.cc', 377 'service_manager/service_manager.cc',
375 'service_manager/service_manager.h', 378 'service_manager/service_manager.h',
376 'service_manager/service_manager_export.h', 379 'service_manager/service_manager_export.h',
377 ], 380 ],
378 'export_dependent_settings': [ 381 'export_dependent_settings': [
379 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 382 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
380 'mojo_shell_bindings', 383 'mojo_shell_bindings',
(...skipping 17 matching lines...) Expand all
398 'target_name': 'mojo_shell_lib', 401 'target_name': 'mojo_shell_lib',
399 'type': 'static_library', 402 'type': 'static_library',
400 'dependencies': [ 403 'dependencies': [
401 '../base/base.gyp:base', 404 '../base/base.gyp:base',
402 '../base/base.gyp:base_static', 405 '../base/base.gyp:base_static',
403 '../net/net.gyp:net', 406 '../net/net.gyp:net',
404 '../url/url.gyp:url_lib', 407 '../url/url.gyp:url_lib',
405 'mojo_gles2_impl', 408 'mojo_gles2_impl',
406 'mojo_service_manager', 409 'mojo_service_manager',
407 'mojo_shell_bindings', 410 'mojo_shell_bindings',
408 'mojo_system',
409 'mojo_system_impl', 411 'mojo_system_impl',
410 'mojo_native_viewport_service', 412 'mojo_native_viewport_service',
411 'mojo_spy', 413 'mojo_spy',
412 ], 414 ],
413 'variables': { 415 'variables': {
414 'mojom_base_output_dir': 'mojo', 416 'mojom_base_output_dir': 'mojo',
415 }, 417 },
416 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 418 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
417 'sources': [ 419 'sources': [
418 'shell/app_child_process.cc', 420 'shell/app_child_process.cc',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 'target_name': 'mojo_shell', 461 'target_name': 'mojo_shell',
460 'type': 'executable', 462 'type': 'executable',
461 'dependencies': [ 463 'dependencies': [
462 '../base/base.gyp:base', 464 '../base/base.gyp:base',
463 '../ui/gl/gl.gyp:gl', 465 '../ui/gl/gl.gyp:gl',
464 '../url/url.gyp:url_lib', 466 '../url/url.gyp:url_lib',
465 'mojo_common_lib', 467 'mojo_common_lib',
466 'mojo_environment_chromium', 468 'mojo_environment_chromium',
467 'mojo_service_manager', 469 'mojo_service_manager',
468 'mojo_shell_lib', 470 'mojo_shell_lib',
469 'mojo_system',
470 'mojo_system_impl', 471 'mojo_system_impl',
471 ], 472 ],
472 'sources': [ 473 'sources': [
473 'shell/desktop/mojo_main.cc', 474 'shell/desktop/mojo_main.cc',
474 ], 475 ],
475 }, 476 },
476 { 477 {
477 'target_name': 'mojo_service_manager_unittests', 478 'target_name': 'mojo_service_manager_unittests',
478 'type': 'executable', 479 'type': 'executable',
479 'dependencies': [ 480 'dependencies': [
480 '../base/base.gyp:base', 481 '../base/base.gyp:base',
481 '../testing/gtest.gyp:gtest', 482 '../testing/gtest.gyp:gtest',
482 '../url/url.gyp:url_lib', 483 '../url/url.gyp:url_lib',
483 'mojo_bindings', 484 'mojo_bindings',
484 'mojo_common_lib', 485 'mojo_common_lib',
485 'mojo_environment_chromium', 486 'mojo_environment_chromium',
486 'mojo_run_all_unittests', 487 'mojo_run_all_unittests',
487 'mojo_service_manager', 488 'mojo_service_manager',
488 'mojo_shell_client', 489 'mojo_shell_client',
489 'mojo_system',
490 ], 490 ],
491 'variables': { 491 'variables': {
492 'mojom_base_output_dir': 'mojo', 492 'mojom_base_output_dir': 'mojo',
493 }, 493 },
494 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], 494 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
495 'sources': [ 495 'sources': [
496 'service_manager/service_manager_unittest.cc', 496 'service_manager/service_manager_unittest.cc',
497 'service_manager/test.mojom', 497 'service_manager/test.mojom',
498 ], 498 ],
499 }, 499 },
500 { 500 {
501 'target_name': 'mojo_js_bindings_lib', 501 'target_name': 'mojo_js_bindings_lib',
502 'type': 'static_library', 502 'type': 'static_library',
503 'dependencies': [ 503 'dependencies': [
504 '../base/base.gyp:base', 504 '../base/base.gyp:base',
505 '../gin/gin.gyp:gin', 505 '../gin/gin.gyp:gin',
506 '../v8/tools/gyp/v8.gyp:v8', 506 '../v8/tools/gyp/v8.gyp:v8',
507 'mojo_common_lib', 507 'mojo_common_lib',
508 'mojo_system',
509 ], 508 ],
510 'export_dependent_settings': [ 509 'export_dependent_settings': [
511 '../base/base.gyp:base', 510 '../base/base.gyp:base',
512 '../gin/gin.gyp:gin', 511 '../gin/gin.gyp:gin',
513 'mojo_common_lib', 512 'mojo_common_lib',
514 'mojo_system',
515 ], 513 ],
516 'sources': [ 514 'sources': [
517 'bindings/js/core.cc', 515 'bindings/js/core.cc',
518 'bindings/js/core.h', 516 'bindings/js/core.h',
519 'bindings/js/handle.cc', 517 'bindings/js/handle.cc',
520 'bindings/js/handle.h', 518 'bindings/js/handle.h',
521 'bindings/js/support.cc', 519 'bindings/js/support.cc',
522 'bindings/js/support.h', 520 'bindings/js/support.h',
523 'bindings/js/waiting_callback.cc', 521 'bindings/js/waiting_callback.cc',
524 'bindings/js/waiting_callback.h', 522 'bindings/js/waiting_callback.h',
(...skipping 14 matching lines...) Expand all
539 }, 537 },
540 { 538 {
541 'target_name': 'mojo_message_generator', 539 'target_name': 'mojo_message_generator',
542 'type': 'executable', 540 'type': 'executable',
543 'dependencies': [ 541 'dependencies': [
544 '../base/base.gyp:base', 542 '../base/base.gyp:base',
545 '../testing/gtest.gyp:gtest', 543 '../testing/gtest.gyp:gtest',
546 'mojo_bindings', 544 'mojo_bindings',
547 'mojo_common_lib', 545 'mojo_common_lib',
548 'mojo_environment_chromium', 546 'mojo_environment_chromium',
549 'mojo_system',
550 'mojo_system_impl', 547 'mojo_system_impl',
551 ], 548 ],
552 'sources': [ 549 'sources': [
553 'tools/message_generator.cc', 550 'tools/message_generator.cc',
554 ], 551 ],
555 }, 552 },
556 ], 553 ],
557 'conditions': [ 554 'conditions': [
558 ['OS=="android"', { 555 ['OS=="android"', {
559 'targets': [ 556 'targets': [
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 'mojo_js_unittests.isolate', 644 'mojo_js_unittests.isolate',
648 ], 645 ],
649 'sources': [ 646 'sources': [
650 'mojo_js_unittests.isolate', 647 'mojo_js_unittests.isolate',
651 ], 648 ],
652 }, 649 },
653 ], 650 ],
654 }], 651 }],
655 ], 652 ],
656 } 653 }
OLDNEW
« no previous file with comments | « mojo/embedder/test_embedder.cc ('k') | mojo/mojo_apps.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698