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

Side by Side Diff: third_party/mojo/mojo_edk_tests.gyp

Issue 1139123006: Fork the mojo shell interfaces used by Mandoline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years, 7 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'includes': [ 6 'includes': [
7 'mojo_variables.gypi', 7 'mojo_variables.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'mojo_edk_tests', 11 'target_name': 'mojo_edk_tests',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 # NOTE: If adding a new dependency here, please consider whether it 14 # NOTE: If adding a new dependency here, please consider whether it
15 # should also be added to the list of Mojo-related dependencies of 15 # should also be added to the list of Mojo-related dependencies of
16 # build/all.gyp:All on iOS, as All cannot depend on the mojo_base 16 # build/all.gyp:All on iOS, as All cannot depend on the mojo_base
17 # target on iOS due to the presence of the js targets, which cause v8 17 # target on iOS due to the presence of the js targets, which cause v8
18 # to be built. 18 # to be built.
19 'mojo_message_pipe_perftests', 19 'mojo_message_pipe_perftests',
20 'mojo_public_application_unittests',
21 'mojo_public_bindings_unittests', 20 'mojo_public_bindings_unittests',
22 'mojo_public_environment_unittests', 21 'mojo_public_environment_unittests',
23 'mojo_public_system_perftests', 22 'mojo_public_system_perftests',
24 'mojo_public_system_unittests', 23 'mojo_public_system_unittests',
25 'mojo_public_utility_unittests', 24 'mojo_public_utility_unittests',
26 'mojo_system_unittests', 25 'mojo_system_unittests',
27 'mojo_js_unittests', 26 'mojo_js_unittests',
28 'mojo_js_integration_tests', 27 'mojo_js_integration_tests',
29 ], 28 ],
30 }, 29 },
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 ], 75 ],
77 'include_dirs': [ '../..' ], 76 'include_dirs': [ '../..' ],
78 'sources': [ 77 'sources': [
79 'src/mojo/public/cpp/environment/tests/async_wait_unittest.cc', 78 'src/mojo/public/cpp/environment/tests/async_wait_unittest.cc',
80 'src/mojo/public/cpp/environment/tests/async_waiter_unittest.cc', 79 'src/mojo/public/cpp/environment/tests/async_waiter_unittest.cc',
81 'src/mojo/public/cpp/environment/tests/logger_unittest.cc', 80 'src/mojo/public/cpp/environment/tests/logger_unittest.cc',
82 'src/mojo/public/cpp/environment/tests/logging_unittest.cc', 81 'src/mojo/public/cpp/environment/tests/logging_unittest.cc',
83 ], 82 ],
84 }, 83 },
85 { 84 {
86 # GN version: //mojo/edk/test:mojo_public_application_unittests
87 'target_name': 'mojo_public_application_unittests',
88 'type': 'executable',
89 'dependencies': [
90 '../../base/base.gyp:base',
91 '../../testing/gtest.gyp:gtest',
92 'mojo_edk.gyp:mojo_run_all_unittests',
93 'mojo_public.gyp:mojo_application_standalone',
94 'mojo_public.gyp:mojo_utility',
95 'mojo_public.gyp:mojo_environment_standalone',
96 ],
97 'sources': [
98 'src/mojo/public/cpp/application/tests/service_registry_unittest.cc',
99 ],
100 },
101 {
102 # GN version: //mojo/public/cpp/system/tests:mojo_public_system_unittests 85 # GN version: //mojo/public/cpp/system/tests:mojo_public_system_unittests
103 # and //mojo/public/c/system/tests 86 # and //mojo/public/c/system/tests
104 'target_name': 'mojo_public_system_unittests', 87 'target_name': 'mojo_public_system_unittests',
105 'type': 'executable', 88 'type': 'executable',
106 'dependencies': [ 89 'dependencies': [
107 '../../testing/gtest.gyp:gtest', 90 '../../testing/gtest.gyp:gtest',
108 'mojo_edk.gyp:mojo_run_all_unittests', 91 'mojo_edk.gyp:mojo_run_all_unittests',
109 'mojo_public.gyp:mojo_public_test_utils', 92 'mojo_public.gyp:mojo_public_test_utils',
110 ], 93 ],
111 'include_dirs': [ '../..' ], 94 'include_dirs': [ '../..' ],
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 'type': 'none', 255 'type': 'none',
273 'variables': { 256 'variables': {
274 'mojom_files': [ 257 'mojom_files': [
275 'src/mojo/edk/js/tests/js_to_cpp.mojom', 258 'src/mojo/edk/js/tests/js_to_cpp.mojom',
276 ], 259 ],
277 }, 260 },
278 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], 261 'includes': [ 'mojom_bindings_generator_explicit.gypi' ],
279 }, 262 },
280 ], 263 ],
281 } 264 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698