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

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

Issue 1902263004: Mojo: Change the blink variant from "wtf" to "blink". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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_application.gni") 5 import("../../../mojo_application.gni")
6 6
7 source_set("tests") { 7 source_set("tests") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 deps = [ 48 deps = [
49 ":mojo_public_bindings_test_utils", 49 ":mojo_public_bindings_test_utils",
50 "//mojo/message_pump", 50 "//mojo/message_pump",
51 "//mojo/public/cpp/bindings", 51 "//mojo/public/cpp/bindings",
52 "//mojo/public/cpp/bindings:callback", 52 "//mojo/public/cpp/bindings:callback",
53 "//mojo/public/cpp/system", 53 "//mojo/public/cpp/system",
54 "//mojo/public/cpp/test_support:test_utils", 54 "//mojo/public/cpp/test_support:test_utils",
55 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", 55 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces",
56 "//mojo/public/interfaces/bindings/tests:test_interfaces", 56 "//mojo/public/interfaces/bindings/tests:test_interfaces",
57 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink",
57 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", 58 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental",
58 "//mojo/public/interfaces/bindings/tests:test_interfaces_wtf",
59 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", 59 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces",
60 "//testing/gtest", 60 "//testing/gtest",
61 ] 61 ]
62 } 62 }
63 63
64 source_set("for_blink_tests") { 64 source_set("for_blink_tests") {
65 testonly = true 65 testonly = true
66 66
67 sources = [ 67 sources = [
68 "array_common_test.h", 68 "array_common_test.h",
69 "container_test_util.cc", 69 "container_test_util.cc",
70 "container_test_util.h", 70 "container_test_util.h",
71 "variant_test_util.h", 71 "variant_test_util.h",
72 "wtf_array_unittest.cc", 72 "wtf_array_unittest.cc",
73 "wtf_types_unittest.cc", 73 "wtf_types_unittest.cc",
74 ] 74 ]
75 75
76 deps = [ 76 deps = [
77 "//mojo/public/cpp/bindings", 77 "//mojo/public/cpp/bindings",
78 "//mojo/public/cpp/bindings:callback", 78 "//mojo/public/cpp/bindings:callback",
79 "//mojo/public/cpp/system", 79 "//mojo/public/cpp/system",
80 "//mojo/public/interfaces/bindings/tests:test_interfaces", 80 "//mojo/public/interfaces/bindings/tests:test_interfaces",
81 "//mojo/public/interfaces/bindings/tests:test_wtf_types", 81 "//mojo/public/interfaces/bindings/tests:test_wtf_types",
82 "//mojo/public/interfaces/bindings/tests:test_wtf_types_wtf", 82 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink",
83 "//testing/gtest", 83 "//testing/gtest",
84 ] 84 ]
85 } 85 }
86 86
87 source_set("struct_with_traits_impl") { 87 source_set("struct_with_traits_impl") {
88 sources = [ 88 sources = [
89 "struct_with_traits_impl.cc", 89 "struct_with_traits_impl.cc",
90 "struct_with_traits_impl.h", 90 "struct_with_traits_impl.h",
91 ] 91 ]
92 92
(...skipping 26 matching lines...) Expand all
119 source_set("mojo_public_bindings_test_utils") { 119 source_set("mojo_public_bindings_test_utils") {
120 sources = [ 120 sources = [
121 "validation_test_input_parser.cc", 121 "validation_test_input_parser.cc",
122 "validation_test_input_parser.h", 122 "validation_test_input_parser.h",
123 ] 123 ]
124 124
125 deps = [ 125 deps = [
126 "//mojo/public/c/system", 126 "//mojo/public/c/system",
127 ] 127 ]
128 } 128 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698