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

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

Issue 2276043002: Support custom message filtering on Mojo binding objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 3 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("../../../tools/bindings/mojom.gni") 5 import("../../../tools/bindings/mojom.gni")
6 6
7 mojom("test_interfaces") { 7 mojom("test_interfaces") {
8 testonly = true 8 testonly = true
9 sources = [ 9 sources = [
10 "math_calculator.mojom", 10 "math_calculator.mojom",
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 } 95 }
96 96
97 mojom("test_associated_interfaces") { 97 mojom("test_associated_interfaces") {
98 # These files are not included in the test_interfaces target because 98 # These files are not included in the test_interfaces target because
99 # associated interfaces are not supported by all bindings languages yet. 99 # associated interfaces are not supported by all bindings languages yet.
100 testonly = true 100 testonly = true
101 sources = [ 101 sources = [
102 "test_associated_interfaces.mojom", 102 "test_associated_interfaces.mojom",
103 "validation_test_associated_interfaces.mojom", 103 "validation_test_associated_interfaces.mojom",
104 ] 104 ]
105
106 public_deps = [
107 ":test_interfaces",
108 ]
105 } 109 }
106 110
107 mojom("versioning_test_service_interfaces") { 111 mojom("versioning_test_service_interfaces") {
108 testonly = true 112 testonly = true
109 sources = [ 113 sources = [
110 "versioning_test_service.mojom", 114 "versioning_test_service.mojom",
111 ] 115 ]
112 } 116 }
113 117
114 mojom("versioning_test_client_interfaces") { 118 mojom("versioning_test_client_interfaces") {
(...skipping 11 matching lines...) Expand all
126 ] 130 ]
127 } 131 }
128 132
129 mojom("test_no_sources") { 133 mojom("test_no_sources") {
130 testonly = true 134 testonly = true
131 135
132 public_deps = [ 136 public_deps = [
133 ":test_interfaces", 137 ":test_interfaces",
134 ] 138 ]
135 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698