| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 "//services/service_manager/public/cpp", | 252 "//services/service_manager/public/cpp", |
| 253 "//services/service_manager/public/interfaces", | 253 "//services/service_manager/public/interfaces", |
| 254 "//third_party/WebKit/public:blink_headers", | 254 "//third_party/WebKit/public:blink_headers", |
| 255 "//ui/accessibility", | 255 "//ui/accessibility", |
| 256 "//ui/surface", | 256 "//ui/surface", |
| 257 "//url/ipc:url_ipc", | 257 "//url/ipc:url_ipc", |
| 258 ] | 258 ] |
| 259 deps = [ | 259 deps = [ |
| 260 # This looks needless as we have //content/common in public_deps, but it's | 260 # This looks needless as we have //content/common in public_deps, but it's |
| 261 # needed because of allow_circular_includes_from. | 261 # needed because of allow_circular_includes_from. |
| 262 "//components/mime_util", |
| 262 "//content/common:mojo_bindings", | 263 "//content/common:mojo_bindings", |
| 263 "//ipc", | 264 "//ipc", |
| 264 "//media", | 265 "//media", |
| 265 "//mojo/common", | 266 "//mojo/common", |
| 266 "//net", | 267 "//net", |
| 267 "//ppapi/c", | 268 "//ppapi/c", |
| 268 "//ppapi/features", | 269 "//ppapi/features", |
| 269 "//services/service_manager/public/cpp", | 270 "//services/service_manager/public/cpp", |
| 270 "//skia", | 271 "//skia", |
| 271 "//storage/common", | 272 "//storage/common", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 sources = [ | 326 sources = [ |
| 326 "window_container_type.mojom", | 327 "window_container_type.mojom", |
| 327 ] | 328 ] |
| 328 } | 329 } |
| 329 | 330 |
| 330 mojom("service_names") { | 331 mojom("service_names") { |
| 331 sources = [ | 332 sources = [ |
| 332 "service_names.mojom", | 333 "service_names.mojom", |
| 333 ] | 334 ] |
| 334 } | 335 } |
| OLD | NEW |