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

Side by Side Diff: mojo/mojo.gyp

Issue 208223006: Revert of Add creation of ServiceManager to Content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/gles2/command_buffer_client_impl.cc ('k') | mojo/mojo_examples.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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 'environment/default_async_waiter_impl.h', 329 'environment/default_async_waiter_impl.h',
330 'environment/buffer_tls_impl.cc', 330 'environment/buffer_tls_impl.cc',
331 'environment/buffer_tls_impl.h', 331 'environment/buffer_tls_impl.h',
332 ], 332 ],
333 'include_dirs': [ 333 'include_dirs': [
334 '..', 334 '..',
335 ], 335 ],
336 }, 336 },
337 { 337 {
338 'target_name': 'mojo_service_manager', 338 'target_name': 'mojo_service_manager',
339 'type': '<(component)', 339 'type': 'static_library',
340 'defines': [
341 'MOJO_SERVICE_MANAGER_IMPLEMENTATION',
342 ],
343 'dependencies': [ 340 'dependencies': [
344 '../base/base.gyp:base', 341 '../base/base.gyp:base',
345 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 342 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
346 '../net/net.gyp:net', 343 '../net/net.gyp:net',
347 '../url/url.gyp:url_lib', 344 '../url/url.gyp:url_lib',
348 'mojo_environment_chromium',
349 'mojo_shell_bindings', 345 'mojo_shell_bindings',
350 ], 346 ],
351 'sources': [ 347 'sources': [
352 'service_manager/service_loader.h', 348 'service_manager/service_loader.h',
353 'service_manager/service_manager.cc', 349 'service_manager/service_manager.cc',
354 'service_manager/service_manager.h', 350 'service_manager/service_manager.h',
355 'service_manager/service_manager_export.h',
356 ], 351 ],
357 'export_dependent_settings': [ 352 'export_dependent_settings': [
358 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 353 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
359 'mojo_shell_bindings',
360 ], 354 ],
361 }, 355 },
362 { 356 {
363 'target_name': 'mojo_shell_lib', 357 'target_name': 'mojo_shell_lib',
364 'type': 'static_library', 358 'type': 'static_library',
365 'dependencies': [ 359 'dependencies': [
366 '../base/base.gyp:base', 360 '../base/base.gyp:base',
367 '../base/base.gyp:base_static', 361 '../base/base.gyp:base_static',
368 '../net/net.gyp:net', 362 '../net/net.gyp:net',
369 '../url/url.gyp:url_lib', 363 '../url/url.gyp:url_lib',
370 'mojo_gles2_impl', 364 'mojo_gles2_impl',
365 'mojo_shell_bindings',
371 'mojo_service_manager', 366 'mojo_service_manager',
372 'mojo_shell_bindings',
373 'mojo_system', 367 'mojo_system',
374 'mojo_system_impl', 368 'mojo_system_impl',
375 'mojo_native_viewport_service', 369 'mojo_native_viewport_service',
376 ], 370 ],
377 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], 371 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
378 'sources': [ 372 'sources': [
379 'shell/app_child_process.cc', 373 'shell/app_child_process.cc',
380 'shell/app_child_process.h', 374 'shell/app_child_process.h',
381 'shell/app_child_process.mojom', 375 'shell/app_child_process.mojom',
382 'shell/app_child_process_host.cc', 376 'shell/app_child_process_host.cc',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 }, 412 },
419 { 413 {
420 'target_name': 'mojo_shell', 414 'target_name': 'mojo_shell',
421 'type': 'executable', 415 'type': 'executable',
422 'dependencies': [ 416 'dependencies': [
423 '../base/base.gyp:base', 417 '../base/base.gyp:base',
424 '../ui/gl/gl.gyp:gl', 418 '../ui/gl/gl.gyp:gl',
425 '../url/url.gyp:url_lib', 419 '../url/url.gyp:url_lib',
426 'mojo_common_lib', 420 'mojo_common_lib',
427 'mojo_environment_chromium', 421 'mojo_environment_chromium',
428 'mojo_service_manager', 422 'mojo_shell_bindings',
429 'mojo_shell_lib', 423 'mojo_shell_lib',
430 'mojo_system', 424 'mojo_system',
431 'mojo_system_impl', 425 'mojo_system_impl',
432 ], 426 ],
433 'sources': [ 427 'sources': [
434 'shell/desktop/mojo_main.cc', 428 'shell/desktop/mojo_main.cc',
435 ], 429 ],
436 }, 430 },
437 { 431 {
438 'target_name': 'mojo_service_manager_unittests', 432 'target_name': 'mojo_service_manager_unittests',
439 'type': 'executable', 433 'type': 'executable',
440 'dependencies': [ 434 'dependencies': [
441 '../base/base.gyp:base', 435 '../base/base.gyp:base',
442 '../testing/gtest.gyp:gtest', 436 '../testing/gtest.gyp:gtest',
443 '../url/url.gyp:url_lib',
444 'mojo_bindings', 437 'mojo_bindings',
445 'mojo_environment_standalone', 438 'mojo_environment_standalone',
446 'mojo_run_all_unittests', 439 'mojo_run_all_unittests',
447 'mojo_service_manager', 440 'mojo_service_manager',
448 'mojo_shell_client',
449 'mojo_system', 441 'mojo_system',
450 'mojo_utility', 442 'mojo_utility',
451 ], 443 ],
452 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], 444 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
453 'sources': [ 445 'sources': [
454 'service_manager/service_manager_unittest.cc', 446 'service_manager/service_manager_unittest.cc',
455 'service_manager/test.mojom', 447 'service_manager/test.mojom',
456 ], 448 ],
457 }, 449 },
458 { 450 {
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 'mojo_js_unittests.isolate', 581 'mojo_js_unittests.isolate',
590 ], 582 ],
591 'sources': [ 583 'sources': [
592 'mojo_js_unittests.isolate', 584 'mojo_js_unittests.isolate',
593 ], 585 ],
594 }, 586 },
595 ], 587 ],
596 }], 588 }],
597 ], 589 ],
598 } 590 }
OLDNEW
« no previous file with comments | « mojo/gles2/command_buffer_client_impl.cc ('k') | mojo/mojo_examples.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698