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

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: cast 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 | « no previous file | mojo/public/data/bindings/tests/message_data » ('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 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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 'dependencies': [ 512 'dependencies': [
512 '../gin/gin.gyp:gin_test', 513 '../gin/gin.gyp:gin_test',
513 'mojo_js_bindings_lib', 514 'mojo_js_bindings_lib',
514 'mojo_run_all_unittests', 515 'mojo_run_all_unittests',
515 'mojo_sample_service', 516 'mojo_sample_service',
516 ], 517 ],
517 'sources': [ 518 'sources': [
518 'bindings/js/run_js_tests.cc', 519 'bindings/js/run_js_tests.cc',
519 ], 520 ],
520 }, 521 },
522 {
523 'target_name': 'mojo_message_generator',
524 'type': 'executable',
525 'dependencies': [
526 '../base/base.gyp:base',
527 '../testing/gtest.gyp:gtest',
528 'mojo_bindings',
529 'mojo_common_lib',
530 'mojo_environment_chromium',
531 'mojo_system',
532 'mojo_system_impl',
533 ],
534 'sources': [
535 'tools/message_generator.cc',
536 ],
537 },
521 ], 538 ],
522 'conditions': [ 539 'conditions': [
523 ['OS=="android"', { 540 ['OS=="android"', {
524 'targets': [ 541 'targets': [
525 { 542 {
526 'target_name': 'mojo_native_viewport_java', 543 'target_name': 'mojo_native_viewport_java',
527 'type': 'none', 544 'type': 'none',
528 'dependencies': [ 545 'dependencies': [
529 '../base/base.gyp:base_java', 546 '../base/base.gyp:base_java',
530 ], 547 ],
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 'mojo_js_unittests.isolate', 629 'mojo_js_unittests.isolate',
613 ], 630 ],
614 'sources': [ 631 'sources': [
615 'mojo_js_unittests.isolate', 632 'mojo_js_unittests.isolate',
616 ], 633 ],
617 }, 634 },
618 ], 635 ],
619 }], 636 }],
620 ], 637 ],
621 } 638 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/data/bindings/tests/message_data » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698