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

Side by Side Diff: mojo/mojo.gyp

Issue 191293018: Adds a generator for writing messages to disk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: common_lib 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
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 17 matching lines...) Expand all
28 'target_name': 'mojo', 28 'target_name': 'mojo',
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_pepper_container_app', 39 'mojo_pepper_container_app',
39 'mojo_public_test_utils', 40 'mojo_public_test_utils',
40 'mojo_public_bindings_unittests', 41 'mojo_public_bindings_unittests',
41 'mojo_public_environment_unittests', 42 'mojo_public_environment_unittests',
42 'mojo_public_system_perftests', 43 'mojo_public_system_perftests',
43 'mojo_public_system_unittests', 44 'mojo_public_system_unittests',
44 'mojo_public_utility_unittests', 45 'mojo_public_utility_unittests',
45 'mojo_sample_app', 46 'mojo_sample_app',
46 'mojo_service_manager', 47 'mojo_service_manager',
47 'mojo_service_manager_unittests', 48 'mojo_service_manager_unittests',
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 'dependencies': [ 508 'dependencies': [
508 '../gin/gin.gyp:gin_test', 509 '../gin/gin.gyp:gin_test',
509 'mojo_js_bindings_lib', 510 'mojo_js_bindings_lib',
510 'mojo_run_all_unittests', 511 'mojo_run_all_unittests',
511 'mojo_sample_service', 512 'mojo_sample_service',
512 ], 513 ],
513 'sources': [ 514 'sources': [
514 'bindings/js/run_js_tests.cc', 515 'bindings/js/run_js_tests.cc',
515 ], 516 ],
516 }, 517 },
518 {
519 'target_name': 'mojo_message_generator',
520 'type': 'executable',
521 'dependencies': [
522 '../base/base.gyp:base',
523 '../testing/gtest.gyp:gtest',
524 'mojo_bindings',
525 'mojo_common_lib',
526 'mojo_environment_chromium',
527 'mojo_system',
528 'mojo_system_impl',
529 ],
530 'sources': [
531 'public/bindings/tests/message_generator.cc',
532 ],
533 },
517 ], 534 ],
518 'conditions': [ 535 'conditions': [
519 ['OS=="android"', { 536 ['OS=="android"', {
520 'targets': [ 537 'targets': [
521 { 538 {
522 'target_name': 'mojo_native_viewport_java', 539 'target_name': 'mojo_native_viewport_java',
523 'type': 'none', 540 'type': 'none',
524 'dependencies': [ 541 'dependencies': [
525 '../base/base.gyp:base_java', 542 '../base/base.gyp:base_java',
526 ], 543 ],
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 'mojo_js_unittests.isolate', 625 'mojo_js_unittests.isolate',
609 ], 626 ],
610 'sources': [ 627 'sources': [
611 'mojo_js_unittests.isolate', 628 'mojo_js_unittests.isolate',
612 ], 629 ],
613 }, 630 },
614 ], 631 ],
615 }], 632 }],
616 ], 633 ],
617 } 634 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/bindings/tests/DEPS » ('j') | mojo/public/bindings/tests/message_generator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698