| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 "//build/config:precompiled_headers", | 245 "//build/config:precompiled_headers", |
| 246 "//content:content_implementation", | 246 "//content:content_implementation", |
| 247 ] | 247 ] |
| 248 | 248 |
| 249 public_configs = [ "//v8:external_startup_data" ] | 249 public_configs = [ "//v8:external_startup_data" ] |
| 250 | 250 |
| 251 public_deps = [ | 251 public_deps = [ |
| 252 ":service_names", | 252 ":service_names", |
| 253 "//content/common", | 253 "//content/common", |
| 254 "//content/public/common:interfaces", | 254 "//content/public/common:interfaces", |
| 255 "//ipc", |
| 255 "//mojo/edk/system", | 256 "//mojo/edk/system", |
| 256 "//mojo/public/cpp/bindings", | 257 "//mojo/public/cpp/bindings", |
| 257 "//services/service_manager/public/cpp", | 258 "//services/service_manager/public/cpp", |
| 258 "//services/service_manager/public/interfaces", | 259 "//services/service_manager/public/interfaces", |
| 259 "//third_party/WebKit/public:blink_headers", | 260 "//third_party/WebKit/public:blink_headers", |
| 260 "//ui/accessibility", | 261 "//ui/accessibility", |
| 261 "//ui/surface", | 262 "//ui/surface", |
| 262 "//url/ipc:url_ipc", | 263 "//url/ipc:url_ipc", |
| 263 ] | 264 ] |
| 264 deps = [ | 265 deps = [ |
| 265 ":content_descriptor_keys", | 266 ":content_descriptor_keys", |
| 266 | 267 |
| 267 # This looks needless as we have //content/common in public_deps, but it's | 268 # This looks needless as we have //content/common in public_deps, but it's |
| 268 # needed because of allow_circular_includes_from. | 269 # needed because of allow_circular_includes_from. |
| 269 "//components/mime_util", | 270 "//components/mime_util", |
| 270 "//content/common:mojo_bindings", | 271 "//content/common:mojo_bindings", |
| 271 "//ipc", | |
| 272 "//media", | 272 "//media", |
| 273 "//mojo/common", | 273 "//mojo/common", |
| 274 "//net", | 274 "//net", |
| 275 "//ppapi/c", | 275 "//ppapi/c", |
| 276 "//ppapi/features", | 276 "//ppapi/features", |
| 277 "//services/service_manager/public/cpp", | 277 "//services/service_manager/public/cpp", |
| 278 "//skia", | 278 "//skia", |
| 279 "//storage/common", | 279 "//storage/common", |
| 280 "//third_party/icu", | 280 "//third_party/icu", |
| 281 "//ui/accessibility", | 281 "//ui/accessibility", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 sources = [ | 333 sources = [ |
| 334 "window_container_type.mojom", | 334 "window_container_type.mojom", |
| 335 ] | 335 ] |
| 336 } | 336 } |
| 337 | 337 |
| 338 mojom("service_names") { | 338 mojom("service_names") { |
| 339 sources = [ | 339 sources = [ |
| 340 "service_names.mojom", | 340 "service_names.mojom", |
| 341 ] | 341 ] |
| 342 } | 342 } |
| OLD | NEW |