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

Side by Side Diff: mojo/mojo_edk_tests.gyp

Issue 1751563002: Mojo C++ bindings: support mapping mojo string to WTF::String. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 {
(...skipping 29 matching lines...) Expand all
40 'sources': [ 40 'sources': [
41 'edk/system/ports/ports_unittest.cc', 41 'edk/system/ports/ports_unittest.cc',
42 ], 42 ],
43 }, 43 },
44 { 44 {
45 # GN version: //mojo/edk/test:mojo_public_bindings_unittests 45 # GN version: //mojo/edk/test:mojo_public_bindings_unittests
46 'target_name': 'mojo_public_bindings_unittests', 46 'target_name': 'mojo_public_bindings_unittests',
47 'type': 'executable', 47 'type': 'executable',
48 'dependencies': [ 48 'dependencies': [
49 '../testing/gtest.gyp:gtest', 49 '../testing/gtest.gyp:gtest',
50 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittest_helpers',
50 'mojo_base.gyp:mojo_environment_chromium', 51 'mojo_base.gyp:mojo_environment_chromium',
51 'mojo_edk.gyp:mojo_run_all_unittests', 52 'mojo_edk.gyp:mojo_run_all_unittests',
52 'mojo_public.gyp:mojo_cpp_bindings', 53 'mojo_public.gyp:mojo_cpp_bindings',
53 'mojo_public.gyp:mojo_message_pump_lib', 54 'mojo_public.gyp:mojo_message_pump_lib',
54 'mojo_public.gyp:mojo_public_bindings_test_utils', 55 'mojo_public.gyp:mojo_public_bindings_test_utils',
55 'mojo_public.gyp:mojo_public_test_associated_interfaces', 56 'mojo_public.gyp:mojo_public_test_associated_interfaces',
56 'mojo_public.gyp:mojo_public_test_interfaces', 57 'mojo_public.gyp:mojo_public_test_interfaces',
57 'mojo_public.gyp:mojo_public_test_interfaces_blink', 58 'mojo_public.gyp:mojo_public_test_interfaces_blink',
58 'mojo_public.gyp:mojo_public_test_interfaces_chromium', 59 'mojo_public.gyp:mojo_public_test_interfaces_chromium',
59 'mojo_public.gyp:mojo_public_test_interfaces_struct_traits', 60 'mojo_public.gyp:mojo_public_test_interfaces_struct_traits',
60 'mojo_public.gyp:mojo_public_test_utils', 61 'mojo_public.gyp:mojo_public_test_utils',
62 'mojo_public.gyp:mojo_public_test_wtf_types',
63 'mojo_public.gyp:mojo_public_test_wtf_types_blink',
61 'mojo_public.gyp:mojo_utility', 64 'mojo_public.gyp:mojo_utility',
62 ], 65 ],
63 'sources': [ 66 'sources': [
64 'public/cpp/bindings/tests/array_unittest.cc', 67 'public/cpp/bindings/tests/array_unittest.cc',
65 'public/cpp/bindings/tests/associated_interface_unittest.cc', 68 'public/cpp/bindings/tests/associated_interface_unittest.cc',
66 'public/cpp/bindings/tests/binding_callback_unittest.cc', 69 'public/cpp/bindings/tests/binding_callback_unittest.cc',
67 'public/cpp/bindings/tests/binding_unittest.cc', 70 'public/cpp/bindings/tests/binding_unittest.cc',
68 'public/cpp/bindings/tests/bounds_checker_unittest.cc', 71 'public/cpp/bindings/tests/bounds_checker_unittest.cc',
69 'public/cpp/bindings/tests/buffer_unittest.cc', 72 'public/cpp/bindings/tests/buffer_unittest.cc',
70 'public/cpp/bindings/tests/callback_unittest.cc', 73 'public/cpp/bindings/tests/callback_unittest.cc',
(...skipping 23 matching lines...) Expand all
94 'public/cpp/bindings/tests/stl_converters_unittest.cc', 97 'public/cpp/bindings/tests/stl_converters_unittest.cc',
95 'public/cpp/bindings/tests/string_unittest.cc', 98 'public/cpp/bindings/tests/string_unittest.cc',
96 'public/cpp/bindings/tests/struct_traits_unittest.cc', 99 'public/cpp/bindings/tests/struct_traits_unittest.cc',
97 'public/cpp/bindings/tests/struct_unittest.cc', 100 'public/cpp/bindings/tests/struct_unittest.cc',
98 'public/cpp/bindings/tests/struct_with_traits_impl.cc', 101 'public/cpp/bindings/tests/struct_with_traits_impl.cc',
99 'public/cpp/bindings/tests/struct_with_traits_impl.h', 102 'public/cpp/bindings/tests/struct_with_traits_impl.h',
100 'public/cpp/bindings/tests/sync_method_unittest.cc', 103 'public/cpp/bindings/tests/sync_method_unittest.cc',
101 'public/cpp/bindings/tests/type_conversion_unittest.cc', 104 'public/cpp/bindings/tests/type_conversion_unittest.cc',
102 'public/cpp/bindings/tests/union_unittest.cc', 105 'public/cpp/bindings/tests/union_unittest.cc',
103 'public/cpp/bindings/tests/validation_unittest.cc', 106 'public/cpp/bindings/tests/validation_unittest.cc',
107 'public/cpp/bindings/tests/wtf_types_unittest.cc',
104 ], 108 ],
105 }, 109 },
106 { 110 {
107 # GN version: //mojo/edk/test:mojo_public_bindings_perftests 111 # GN version: //mojo/edk/test:mojo_public_bindings_perftests
108 'target_name': 'mojo_public_bindings_perftests', 112 'target_name': 'mojo_public_bindings_perftests',
109 'type': 'executable', 113 'type': 'executable',
110 'dependencies': [ 114 'dependencies': [
111 '../testing/gtest.gyp:gtest', 115 '../testing/gtest.gyp:gtest',
112 'mojo_base.gyp:mojo_common_lib', 116 'mojo_base.gyp:mojo_common_lib',
113 'mojo_edk.gyp:mojo_run_all_unittests', 117 'mojo_edk.gyp:mojo_run_all_unittests',
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 '../build/isolate.gypi', 362 '../build/isolate.gypi',
359 ], 363 ],
360 'sources': [ 364 'sources': [
361 'mojo_public_utility_unittests.isolate', 365 'mojo_public_utility_unittests.isolate',
362 ], 366 ],
363 }, 367 },
364 ], 368 ],
365 }], 369 }],
366 ], 370 ],
367 } 371 }
OLDNEW
« no previous file with comments | « no previous file | mojo/mojo_public.gyp » ('j') | mojo/public/cpp/bindings/lib/wtf_string_serialization.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698