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

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

Issue 1429653004: Remove the mojo_use_application_in_sdk GN variable. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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 | « mojo/public/BUILD.gn ('k') | mojo/public/java/BUILD.gn » ('j') | no next file with comments »
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("../../../mojo_application.gni") 5 import("../../../mojo_application.gni")
6 import("../../../mojo_sdk.gni") 6 import("../../../mojo_sdk.gni")
7 import("../../../mojo.gni")
8 7
9 mojo_sdk_source_set("tests") { 8 mojo_sdk_source_set("tests") {
10 testonly = true 9 testonly = true
11 10
12 sources = [ 11 sources = [
13 "array_unittest.cc", 12 "array_unittest.cc",
14 "binding_callback_unittest.cc", 13 "binding_callback_unittest.cc",
15 "binding_unittest.cc", 14 "binding_unittest.cc",
16 "bounds_checker_unittest.cc", 15 "bounds_checker_unittest.cc",
17 "buffer_unittest.cc", 16 "buffer_unittest.cc",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 79
81 mojo_sdk_source_set("mojo_public_bindings_test_utils") { 80 mojo_sdk_source_set("mojo_public_bindings_test_utils") {
82 sources = [ 81 sources = [
83 "validation_test_input_parser.cc", 82 "validation_test_input_parser.cc",
84 "validation_test_input_parser.h", 83 "validation_test_input_parser.h",
85 ] 84 ]
86 85
87 mojo_sdk_deps = [ "mojo/public/c/system" ] 86 mojo_sdk_deps = [ "mojo/public/c/system" ]
88 } 87 }
89 88
90 if (mojo_use_application_in_sdk) { 89 mojo_native_application("versioning_test_service") {
91 mojo_native_application("versioning_test_service") { 90 testonly = true
92 testonly = true
93 91
94 deps = [ 92 deps = [
95 ":versioning_test_service_source_set", 93 ":versioning_test_service_source_set",
96 ] 94 ]
97 } 95 }
98 96
99 mojo_sdk_source_set("versioning_test_service_source_set") { 97 mojo_sdk_source_set("versioning_test_service_source_set") {
100 testonly = true 98 testonly = true
101 visibility = [ ":*" ] 99 visibility = [ ":*" ]
102 100
103 sources = [ 101 sources = [
104 "versioning_test_service.cc", 102 "versioning_test_service.cc",
105 ] 103 ]
106 104
107 mojo_sdk_deps = [ 105 mojo_sdk_deps = [
108 "mojo/public/cpp/application:standalone", 106 "mojo/public/cpp/application:standalone",
109 "mojo/public/cpp/bindings", 107 "mojo/public/cpp/bindings",
110 "mojo/public/cpp/system", 108 "mojo/public/cpp/system",
111 "mojo/public/interfaces/bindings/tests:versioning_test_service_interfaces" , 109 "mojo/public/interfaces/bindings/tests:versioning_test_service_interfaces",
112 ] 110 ]
113 } 111 }
114 112
115 mojo_native_application("versioning_apptests") { 113 mojo_native_application("versioning_apptests") {
116 testonly = true 114 testonly = true
117 115
118 deps = [ 116 deps = [
119 ":versioning_apptest_source_set", 117 ":versioning_apptest_source_set",
120 ] 118 ]
121 data_deps = [ 119 data_deps = [
122 ":versioning_test_service", 120 ":versioning_test_service",
123 ] 121 ]
124 } 122 }
125 123
126 mojo_sdk_source_set("versioning_apptest_source_set") { 124 mojo_sdk_source_set("versioning_apptest_source_set") {
127 testonly = true 125 testonly = true
128 visibility = [ ":*" ] 126 visibility = [ ":*" ]
129 127
130 sources = [ 128 sources = [
131 "versioning_apptest.cc", 129 "versioning_apptest.cc",
132 ] 130 ]
133 131
134 mojo_sdk_deps = [ 132 mojo_sdk_deps = [
135 "mojo/public/cpp/application:standalone", 133 "mojo/public/cpp/application:standalone",
136 "mojo/public/cpp/application:test_support_standalone", 134 "mojo/public/cpp/application:test_support_standalone",
137 "mojo/public/cpp/bindings", 135 "mojo/public/cpp/bindings",
138 "mojo/public/cpp/system", 136 "mojo/public/cpp/system",
139 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces", 137 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces",
140 ] 138 ]
141 }
142 } 139 }
OLDNEW
« no previous file with comments | « mojo/public/BUILD.gn ('k') | mojo/public/java/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698