OLD | NEW |
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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") |
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 | 10 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 # so we can enable checking for the rest of the targets in this file. | 159 # so we can enable checking for the rest of the targets in this file. |
160 # TODO: Might be better to split the files with OS-specific includes out to a | 160 # TODO: Might be better to split the files with OS-specific includes out to a |
161 # separate source_set so we can leave checking on for the rest of the target. | 161 # separate source_set so we can leave checking on for the rest of the target. |
162 check_includes = false | 162 check_includes = false |
163 } | 163 } |
164 | 164 |
165 source_set("native_application_support") { | 165 source_set("native_application_support") { |
166 sources = [ | 166 sources = [ |
167 "native_application_support.cc", | 167 "native_application_support.cc", |
168 "native_application_support.h", | 168 "native_application_support.h", |
169 "platform_handle_impl.cc", | |
170 ] | 169 ] |
171 | 170 |
172 public_deps = [ | 171 public_deps = [ |
173 "//third_party/mojo/src/mojo/public/cpp/bindings", | 172 "//third_party/mojo/src/mojo/public/cpp/bindings", |
174 ] | 173 ] |
175 | 174 |
176 deps = [ | 175 deps = [ |
177 "//base", | 176 "//base", |
178 "//mojo/gles2", | 177 "//mojo/gles2", |
179 "//mojo/platform_handle:defs", | |
180 ] | 178 ] |
181 | 179 |
182 # This target has to include the public thunk headers, which generally | 180 # This target has to include the public thunk headers, which generally |
183 # shouldn't be included without picking an implementation. We are providing | 181 # shouldn't be included without picking an implementation. We are providing |
184 # the implementation but the thunk header target cannot declare that we are | 182 # the implementation but the thunk header target cannot declare that we are |
185 # permitted to include it since it's in the public SDK and we are not. | 183 # permitted to include it since it's in the public SDK and we are not. |
186 # Suppress include checking so we can still check the rest of the targets in | 184 # Suppress include checking so we can still check the rest of the targets in |
187 # this file. | 185 # this file. |
188 check_includes = false | 186 check_includes = false |
189 } | 187 } |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
405 #"//mojo/services/http_server/public/interfaces", | 403 #"//mojo/services/http_server/public/interfaces", |
406 "//mojo/services/network/public/interfaces", | 404 "//mojo/services/network/public/interfaces", |
407 | 405 |
408 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 406 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
409 "//third_party/mojo/src/mojo/public/cpp/environment", | 407 "//third_party/mojo/src/mojo/public/cpp/environment", |
410 "//third_party/mojo/src/mojo/public/cpp/system:system", | 408 "//third_party/mojo/src/mojo/public/cpp/system:system", |
411 ] | 409 ] |
412 | 410 |
413 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 411 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
414 } | 412 } |
OLD | NEW |