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

Side by Side Diff: mojo/public/cpp/bindings/tests/BUILD.gn

Issue 923033003: Implement unions as members of structs. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 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
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 import("../../../mojo_sdk.gni") 5 import("../../../mojo_sdk.gni")
6 6
7 mojo_sdk_source_set("tests") { 7 mojo_sdk_source_set("tests") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
11 "array_unittest.cc", 11 "array_unittest.cc",
12 "binding_callback_unittest.cc", 12 "binding_callback_unittest.cc",
13 "binding_unittest.cc", 13 "binding_unittest.cc",
14 "bounds_checker_unittest.cc", 14 "bounds_checker_unittest.cc",
15 "buffer_unittest.cc", 15 "buffer_unittest.cc",
16 "callback_unittest.cc", 16 "callback_unittest.cc",
17 "connector_unittest.cc", 17 "connector_unittest.cc",
18 "container_test_util.cc", 18 "container_test_util.cc",
19 "equals_unittest.cc", 19 "equals_unittest.cc",
20 "handle_passing_unittest.cc", 20 "handle_passing_unittest.cc",
21 "interface_ptr_unittest.cc", 21 "interface_ptr_unittest.cc",
22 "map_unittest.cc", 22 "map_unittest.cc",
23 "request_response_unittest.cc", 23 "request_response_unittest.cc",
24 "router_unittest.cc", 24 "router_unittest.cc",
25 "sample_service_unittest.cc", 25 "sample_service_unittest.cc",
26 "serialization_warning_unittest.cc", 26 "serialization_warning_unittest.cc",
27 "string_unittest.cc", 27 "string_unittest.cc",
28 "struct_unittest.cc", 28 "struct_unittest.cc",
29 "type_conversion_unittest.cc", 29 "type_conversion_unittest.cc",
30 "union_unittest.cc",
31 "validation_unittest.cc", 30 "validation_unittest.cc",
32 ] 31 ]
33 32
34 deps = [ 33 deps = [
35 ":mojo_public_bindings_test_utils", 34 ":mojo_public_bindings_test_utils",
36 "//testing/gtest", 35 "//testing/gtest",
37 ] 36 ]
38 37
39 mojo_sdk_deps = [ 38 mojo_sdk_deps = [
40 "mojo/public/cpp/bindings", 39 "mojo/public/cpp/bindings",
41 "mojo/public/cpp/bindings:callback", 40 "mojo/public/cpp/bindings:callback",
42 "mojo/public/cpp/environment:standalone", 41 "mojo/public/cpp/environment:standalone",
43 "mojo/public/cpp/system", 42 "mojo/public/cpp/system",
44 "mojo/public/cpp/test_support:test_utils", 43 "mojo/public/cpp/test_support:test_utils",
45 "mojo/public/cpp/utility", 44 "mojo/public/cpp/utility",
46 "mojo/public/interfaces/bindings/tests:test_interfaces", 45 "mojo/public/interfaces/bindings/tests:test_interfaces",
47 ] 46 ]
48 } 47 }
49 48
50 mojo_sdk_source_set("mojo_public_bindings_test_utils") { 49 mojo_sdk_source_set("mojo_public_bindings_test_utils") {
51 sources = [ 50 sources = [
52 "validation_test_input_parser.cc", 51 "validation_test_input_parser.cc",
53 "validation_test_input_parser.h", 52 "validation_test_input_parser.h",
54 ] 53 ]
55 54
56 mojo_sdk_deps = [ "mojo/public/c/system" ] 55 mojo_sdk_deps = [ "mojo/public/c/system" ]
57 } 56 }
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/lib/template_util.h ('k') | mojo/public/cpp/bindings/tests/struct_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698