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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 ] | 167 ] |
168 | 168 |
169 public_deps = [ | 169 public_deps = [ |
170 "//third_party/mojo/src/mojo/public/cpp/bindings", | 170 "//third_party/mojo/src/mojo/public/cpp/bindings", |
171 ] | 171 ] |
172 | 172 |
173 deps = [ | 173 deps = [ |
174 "//base", | 174 "//base", |
175 "//mojo/gles2", | 175 "//mojo/gles2", |
176 "//mojo/platform_handle:defs", | 176 "//mojo/platform_handle:defs", |
| 177 "//mojo/shell", |
177 ] | 178 ] |
178 | 179 |
179 # This target has to include the public thunk headers, which generally | 180 # This target has to include the public thunk headers, which generally |
180 # shouldn't be included without picking an implementation. We are providing | 181 # shouldn't be included without picking an implementation. We are providing |
181 # 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 |
182 # 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. |
183 # 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 |
184 # this file. | 185 # this file. |
185 check_includes = false | 186 check_includes = false |
186 } | 187 } |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 #"//mojo/services/http_server/public/interfaces", | 404 #"//mojo/services/http_server/public/interfaces", |
404 "//mojo/services/network/public/interfaces", | 405 "//mojo/services/network/public/interfaces", |
405 | 406 |
406 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 407 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
407 "//third_party/mojo/src/mojo/public/cpp/environment", | 408 "//third_party/mojo/src/mojo/public/cpp/environment", |
408 "//third_party/mojo/src/mojo/public/cpp/system:system", | 409 "//third_party/mojo/src/mojo/public/cpp/system:system", |
409 ] | 410 ] |
410 | 411 |
411 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 412 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
412 } | 413 } |
OLD | NEW |