| 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", |
| 169 ] | 170 ] |
| 170 | 171 |
| 171 public_deps = [ | 172 public_deps = [ |
| 172 "//third_party/mojo/src/mojo/public/cpp/bindings", | 173 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 173 ] | 174 ] |
| 174 | 175 |
| 175 deps = [ | 176 deps = [ |
| 176 "//base", | 177 "//base", |
| 177 "//mojo/gles2", | 178 "//mojo/gles2", |
| 179 "//mojo/platform_handle:defs", |
| 178 ] | 180 ] |
| 179 | 181 |
| 180 # This target has to include the public thunk headers, which generally | 182 # This target has to include the public thunk headers, which generally |
| 181 # shouldn't be included without picking an implementation. We are providing | 183 # shouldn't be included without picking an implementation. We are providing |
| 182 # the implementation but the thunk header target cannot declare that we are | 184 # the implementation but the thunk header target cannot declare that we are |
| 183 # permitted to include it since it's in the public SDK and we are not. | 185 # permitted to include it since it's in the public SDK and we are not. |
| 184 # Suppress include checking so we can still check the rest of the targets in | 186 # Suppress include checking so we can still check the rest of the targets in |
| 185 # this file. | 187 # this file. |
| 186 check_includes = false | 188 check_includes = false |
| 187 } | 189 } |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 #"//mojo/services/http_server/public/interfaces", | 405 #"//mojo/services/http_server/public/interfaces", |
| 404 "//mojo/services/network/public/interfaces", | 406 "//mojo/services/network/public/interfaces", |
| 405 | 407 |
| 406 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 408 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 407 "//third_party/mojo/src/mojo/public/cpp/environment", | 409 "//third_party/mojo/src/mojo/public/cpp/environment", |
| 408 "//third_party/mojo/src/mojo/public/cpp/system:system", | 410 "//third_party/mojo/src/mojo/public/cpp/system:system", |
| 409 ] | 411 ] |
| 410 | 412 |
| 411 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] | 413 #data_deps = [ "//services/http_server:http_server($default_toolchain)" ] |
| 412 } | 414 } |
| OLD | NEW |