| 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("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//services/catalog/public/tools/catalog.gni") | 9 import("//services/catalog/public/tools/catalog.gni") |
| 10 import("//services/service_manager/public/service_manifest.gni") | 10 import("//services/service_manager/public/service_manifest.gni") |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 "//components/nacl/renderer/plugin:nacl_trusted_plugin", | 352 "//components/nacl/renderer/plugin:nacl_trusted_plugin", |
| 353 ] | 353 ] |
| 354 } | 354 } |
| 355 } | 355 } |
| 356 | 356 |
| 357 service_manifest("chrome_content_browser_manifest_overlay") { | 357 service_manifest("chrome_content_browser_manifest_overlay") { |
| 358 source = "//chrome/browser/chrome_content_browser_manifest_overlay.json" | 358 source = "//chrome/browser/chrome_content_browser_manifest_overlay.json" |
| 359 packaged_services = [ | 359 packaged_services = [ |
| 360 "//chrome/browser:preferences_manifest", | 360 "//chrome/browser:preferences_manifest", |
| 361 "//services/image_decoder:manifest", | 361 "//services/image_decoder:manifest", |
| 362 "//services/pdf_compositor:manifest", |
| 362 ] | 363 ] |
| 363 } | 364 } |
| 364 | 365 |
| 365 service_manifest("chrome_content_gpu_manifest_overlay") { | 366 service_manifest("chrome_content_gpu_manifest_overlay") { |
| 366 source = "//chrome/browser/chrome_content_gpu_manifest_overlay.json" | 367 source = "//chrome/browser/chrome_content_gpu_manifest_overlay.json" |
| 367 } | 368 } |
| 368 | 369 |
| 369 service_manifest("chrome_content_plugin_manifest_overlay") { | 370 service_manifest("chrome_content_plugin_manifest_overlay") { |
| 370 source = "//chrome/browser/chrome_content_plugin_manifest_overlay.json" | 371 source = "//chrome/browser/chrome_content_plugin_manifest_overlay.json" |
| 371 } | 372 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 catalog("catalog") { | 434 catalog("catalog") { |
| 434 embedded_services = [ | 435 embedded_services = [ |
| 435 ":chrome_content_browser_manifest", | 436 ":chrome_content_browser_manifest", |
| 436 ":chrome_content_gpu_manifest", | 437 ":chrome_content_gpu_manifest", |
| 437 ":chrome_content_plugin_manifest", | 438 ":chrome_content_plugin_manifest", |
| 438 ":chrome_content_renderer_manifest", | 439 ":chrome_content_renderer_manifest", |
| 439 ":chrome_content_utility_manifest", | 440 ":chrome_content_utility_manifest", |
| 440 ] | 441 ] |
| 441 } | 442 } |
| 442 } | 443 } |
| OLD | NEW |