| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 "//build/config:precompiled_headers", | 241 "//build/config:precompiled_headers", |
| 242 "//content:content_implementation", | 242 "//content:content_implementation", |
| 243 ] | 243 ] |
| 244 | 244 |
| 245 public_configs = [ "//v8:external_startup_data" ] | 245 public_configs = [ "//v8:external_startup_data" ] |
| 246 | 246 |
| 247 public_deps = [ | 247 public_deps = [ |
| 248 ":service_names", | 248 ":service_names", |
| 249 "//content/common", | 249 "//content/common", |
| 250 "//content/public/common:interfaces", | 250 "//content/public/common:interfaces", |
| 251 "//mojo/edk/system", |
| 251 "//mojo/public/cpp/bindings", | 252 "//mojo/public/cpp/bindings", |
| 252 "//services/service_manager/public/cpp", | 253 "//services/service_manager/public/cpp", |
| 253 "//services/service_manager/public/interfaces", | 254 "//services/service_manager/public/interfaces", |
| 254 "//third_party/WebKit/public:blink_headers", | 255 "//third_party/WebKit/public:blink_headers", |
| 255 "//ui/accessibility", | 256 "//ui/accessibility", |
| 256 "//ui/surface", | 257 "//ui/surface", |
| 257 "//url/ipc:url_ipc", | 258 "//url/ipc:url_ipc", |
| 258 ] | 259 ] |
| 259 deps = [ | 260 deps = [ |
| 260 # This looks needless as we have //content/common in public_deps, but it's | 261 # This looks needless as we have //content/common in public_deps, but it's |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 sources = [ | 327 sources = [ |
| 327 "window_container_type.mojom", | 328 "window_container_type.mojom", |
| 328 ] | 329 ] |
| 329 } | 330 } |
| 330 | 331 |
| 331 mojom("service_names") { | 332 mojom("service_names") { |
| 332 sources = [ | 333 sources = [ |
| 333 "service_names.mojom", | 334 "service_names.mojom", |
| 334 ] | 335 ] |
| 335 } | 336 } |
| OLD | NEW |