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

Side by Side Diff: mojo/mojo.gyp

Issue 313653005: Mojo: Add an extremely skeletal mojo_shell_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git cl upload crashed 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'mojo_public_bindings_unittests', 44 'mojo_public_bindings_unittests',
45 'mojo_public_environment_unittests', 45 'mojo_public_environment_unittests',
46 'mojo_public_system_perftests', 46 'mojo_public_system_perftests',
47 'mojo_public_system_unittests', 47 'mojo_public_system_unittests',
48 'mojo_public_utility_unittests', 48 'mojo_public_utility_unittests',
49 'mojo_sample_app', 49 'mojo_sample_app',
50 'mojo_service_manager', 50 'mojo_service_manager',
51 'mojo_service_manager_unittests', 51 'mojo_service_manager_unittests',
52 'mojo_shell', 52 'mojo_shell',
53 'mojo_shell_lib', 53 'mojo_shell_lib',
54 'mojo_shell_tests',
54 'mojo_system', 55 'mojo_system',
55 'mojo_system_impl', 56 'mojo_system_impl',
56 'mojo_system_unittests', 57 'mojo_system_unittests',
57 'mojo_utility', 58 'mojo_utility',
58 'mojo_view_manager_lib', 59 'mojo_view_manager_lib',
59 'mojo_view_manager_lib_unittests', 60 'mojo_view_manager_lib_unittests',
60 ], 61 ],
61 'conditions': [ 62 'conditions': [
62 ['use_aura==1', { 63 ['use_aura==1', {
63 'dependencies': [ 64 'dependencies': [
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 'mojo_environment_chromium', 569 'mojo_environment_chromium',
569 'mojo_service_manager', 570 'mojo_service_manager',
570 'mojo_shell_lib', 571 'mojo_shell_lib',
571 'mojo_system_impl', 572 'mojo_system_impl',
572 ], 573 ],
573 'sources': [ 574 'sources': [
574 'shell/desktop/mojo_main.cc', 575 'shell/desktop/mojo_main.cc',
575 ], 576 ],
576 }, 577 },
577 { 578 {
579 'target_name': 'mojo_shell_tests',
580 'type': 'executable',
581 'dependencies': [
582 '../base/base.gyp:base',
583 '../base/base.gyp:test_support_base',
584 '../testing/gtest.gyp:gtest',
585 # TODO(vtl): We don't currently need this, but I imagine we will soon.
586 # '../ui/gl/gl.gyp:gl',
587 '../url/url.gyp:url_lib',
588 'mojo_common_lib',
589 'mojo_environment_chromium',
590 'mojo_service_manager',
591 'mojo_shell_lib',
592 'mojo_system_impl',
593 ],
594 'sources': [
595 'shell/child_process_host_unittest.cc',
596 'shell/shell_test_base.cc',
597 'shell/shell_test_base.h',
598 'shell/shell_test_main.cc',
599 ],
600 },
601 {
578 'target_name': 'mojo_service_manager_unittests', 602 'target_name': 'mojo_service_manager_unittests',
579 'type': 'executable', 603 'type': 'executable',
580 'dependencies': [ 604 'dependencies': [
581 '../base/base.gyp:base', 605 '../base/base.gyp:base',
582 '../testing/gtest.gyp:gtest', 606 '../testing/gtest.gyp:gtest',
583 '../url/url.gyp:url_lib', 607 '../url/url.gyp:url_lib',
584 'mojo_common_lib', 608 'mojo_common_lib',
585 'mojo_cpp_bindings', 609 'mojo_cpp_bindings',
586 'mojo_environment_chromium', 610 'mojo_environment_chromium',
587 'mojo_run_all_unittests', 611 'mojo_run_all_unittests',
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 'aura/screen_mojo.cc', 901 'aura/screen_mojo.cc',
878 'aura/screen_mojo.h', 902 'aura/screen_mojo.h',
879 'aura/window_tree_host_mojo.cc', 903 'aura/window_tree_host_mojo.cc',
880 'aura/window_tree_host_mojo.h', 904 'aura/window_tree_host_mojo.h',
881 ], 905 ],
882 }, 906 },
883 ], 907 ],
884 }], 908 }],
885 ], 909 ],
886 } 910 }
OLDNEW
« no previous file with comments | « no previous file | mojo/shell/child_process_host_unittest.cc » ('j') | mojo/shell/child_process_host_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698