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

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

Issue 1511783002: Mojo JS bindings: fix the unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « mojo/public/js/validation_unittests.js ('k') | third_party/mojo/src/mojo/edk/js/BUILD.gn » ('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 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_bindings_perftests', 20 'mojo_public_bindings_perftests',
21 'mojo_public_bindings_unittests', 21 'mojo_public_bindings_unittests',
22 'mojo_public_environment_unittests', 22 'mojo_public_environment_unittests',
23 'mojo_public_system_perftests', 23 'mojo_public_system_perftests',
24 'mojo_public_system_unittests', 24 'mojo_public_system_unittests',
25 'mojo_public_utility_unittests', 25 'mojo_public_utility_unittests',
26 'mojo_system_unittests', 26 'mojo_system_unittests',
27 'mojo_js_unittests',
28 'mojo_js_integration_tests', 27 'mojo_js_integration_tests',
29 ], 28 ],
30 }, 29 },
31 # TODO(vtl): Reorganize the mojo_public_*_unittests. 30 # TODO(vtl): Reorganize the mojo_public_*_unittests.
32 { 31 {
33 # GN version: //mojo/edk/test:mojo_public_bindings_unittests 32 # GN version: //mojo/edk/test:mojo_public_bindings_unittests
34 'target_name': 'mojo_public_bindings_unittests', 33 'target_name': 'mojo_public_bindings_unittests',
35 'type': 'executable', 34 'type': 'executable',
36 'dependencies': [ 35 'dependencies': [
37 '../../mojo/mojo_base.gyp:mojo_environment_chromium', 36 '../../mojo/mojo_base.gyp:mojo_environment_chromium',
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 ], 248 ],
250 'sources': [ 249 'sources': [
251 'src/mojo/edk/system/message_pipe_perftest.cc', 250 'src/mojo/edk/system/message_pipe_perftest.cc',
252 'src/mojo/edk/system/message_pipe_test_utils.cc', 251 'src/mojo/edk/system/message_pipe_test_utils.cc',
253 'src/mojo/edk/system/message_pipe_test_utils.h', 252 'src/mojo/edk/system/message_pipe_test_utils.h',
254 'src/mojo/edk/system/test_utils.cc', 253 'src/mojo/edk/system/test_utils.cc',
255 'src/mojo/edk/system/test_utils.h', 254 'src/mojo/edk/system/test_utils.h',
256 ], 255 ],
257 }, 256 },
258 { 257 {
259 # GN version: //mojo/edk/js/test:js_unittests
260 'target_name': 'mojo_js_unittests',
261 'type': 'executable',
262 'dependencies': [
263 '../../gin/gin.gyp:gin_test',
264 'mojo_edk.gyp:mojo_common_test_support',
265 'mojo_edk.gyp:mojo_run_all_unittests',
266 'mojo_edk.gyp:mojo_js_lib',
267 'mojo_public.gyp:mojo_environment_standalone',
268 'mojo_public.gyp:mojo_public_test_interfaces',
269 'mojo_public.gyp:mojo_utility',
270 ],
271 'sources': [
272 'src/mojo/edk/js/handle_unittest.cc',
273 'src/mojo/edk/js/test/run_js_tests.cc',
274 ],
275 },
276 {
277 # GN version: //mojo/edk/js/test:js_integration_tests 258 # GN version: //mojo/edk/js/test:js_integration_tests
278 'target_name': 'mojo_js_integration_tests', 259 'target_name': 'mojo_js_integration_tests',
279 'type': 'executable', 260 'type': 'executable',
280 'dependencies': [ 261 'dependencies': [
281 '../../base/base.gyp:base', 262 '../../base/base.gyp:base',
282 '../../gin/gin.gyp:gin_test', 263 '../../gin/gin.gyp:gin_test',
283 'mojo_public.gyp:mojo_environment_standalone', 264 'mojo_public.gyp:mojo_environment_standalone',
284 'mojo_public.gyp:mojo_public_test_interfaces', 265 'mojo_public.gyp:mojo_public_test_interfaces',
285 'mojo_public.gyp:mojo_utility', 266 'mojo_public.gyp:mojo_utility',
286 'mojo_edk.gyp:mojo_js_lib', 267 'mojo_edk.gyp:mojo_js_lib',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 '../../build/isolate.gypi', 336 '../../build/isolate.gypi',
356 ], 337 ],
357 'sources': [ 338 'sources': [
358 'mojo_public_utility_unittests.isolate', 339 'mojo_public_utility_unittests.isolate',
359 ], 340 ],
360 }, 341 },
361 ], 342 ],
362 }], 343 }],
363 ], 344 ],
364 } 345 }
OLDNEW
« no previous file with comments | « mojo/public/js/validation_unittests.js ('k') | third_party/mojo/src/mojo/edk/js/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698