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/BUILD.gn

Issue 1654373002: C types and utilities to validate and access struct and message headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « no previous file | mojo/public/c/bindings/BUILD.gn » ('j') | mojo/public/c/bindings/lib/message.c » ('J')
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 import("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//build/module_args/mojo.gni") 6 import("//build/module_args/mojo.gni")
7 import("//mojo/public/mojo.gni") 7 import("//mojo/public/mojo.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 declare_args() { 10 declare_args() {
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 # public SDK itself since they are built as native executable binaries, needing 91 # public SDK itself since they are built as native executable binaries, needing
92 # to be linked with the EDK. 92 # to be linked with the EDK.
93 # TODO(vtl): They should be converted to "apptests", i.e., run as apps. 93 # TODO(vtl): They should be converted to "apptests", i.e., run as apps.
94 94
95 group("public_tests") { 95 group("public_tests") {
96 testonly = true 96 testonly = true
97 deps = [ 97 deps = [
98 ":mojo_public_application_unittests", 98 ":mojo_public_application_unittests",
99 ":mojo_public_bindings_perftests", 99 ":mojo_public_bindings_perftests",
100 ":mojo_public_bindings_unittests", 100 ":mojo_public_bindings_unittests",
101 ":mojo_public_c_bindings_unittests",
101 ":mojo_public_environment_unittests", 102 ":mojo_public_environment_unittests",
102 ":mojo_public_system_perftests", 103 ":mojo_public_system_perftests",
103 ":mojo_public_system_unittests", 104 ":mojo_public_system_unittests",
104 ":mojo_public_utility_unittests", 105 ":mojo_public_utility_unittests",
105 ":mojo_system_impl_private_unittests", 106 ":mojo_system_impl_private_unittests",
106 ] 107 ]
107 } 108 }
108 109
109 test("mojo_public_application_unittests") { 110 test("mojo_public_application_unittests") {
110 deps = [ 111 deps = [
111 "//mojo/edk/test:run_all_unittests", 112 "//mojo/edk/test:run_all_unittests",
112 "//mojo/public/cpp/application/tests", 113 "//mojo/public/cpp/application/tests",
113 ] 114 ]
114 } 115 }
115 116
116 test("mojo_public_bindings_unittests") { 117 test("mojo_public_bindings_unittests") {
117 deps = [ 118 deps = [
118 "//mojo/edk/test:run_all_unittests", 119 "//mojo/edk/test:run_all_unittests",
119 "//mojo/public/cpp/bindings/tests", 120 "//mojo/public/cpp/bindings/tests",
120 ] 121 ]
121 } 122 }
122 123
124 test("mojo_public_c_bindings_unittests") {
125 deps = [
126 "//mojo/edk/test:run_all_unittests",
127 "//mojo/public/c/bindings/tests",
128 ]
129 }
130
123 test("mojo_public_bindings_perftests") { 131 test("mojo_public_bindings_perftests") {
124 deps = [ 132 deps = [
125 "//mojo/edk/test:run_all_perftests", 133 "//mojo/edk/test:run_all_perftests",
126 "//mojo/public/cpp/bindings/tests:perftests", 134 "//mojo/public/cpp/bindings/tests:perftests",
127 ] 135 ]
128 } 136 }
129 137
130 test("mojo_public_environment_unittests") { 138 test("mojo_public_environment_unittests") {
131 deps = [ 139 deps = [
132 "//mojo/edk/test:run_all_unittests", 140 "//mojo/edk/test:run_all_unittests",
(...skipping 21 matching lines...) Expand all
154 "//mojo/public/cpp/utility/tests", 162 "//mojo/public/cpp/utility/tests",
155 ] 163 ]
156 } 164 }
157 165
158 test("mojo_system_impl_private_unittests") { 166 test("mojo_system_impl_private_unittests") {
159 deps = [ 167 deps = [
160 "//mojo/edk/test:run_all_unittests", 168 "//mojo/edk/test:run_all_unittests",
161 "//mojo/public/platform/native:system_impl_private_tests", 169 "//mojo/public/platform/native:system_impl_private_tests",
162 ] 170 ]
163 } 171 }
OLDNEW
« no previous file with comments | « no previous file | mojo/public/c/bindings/BUILD.gn » ('j') | mojo/public/c/bindings/lib/message.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698