| 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("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 # This target is for dependency tracking for the command ID header. | 10 # This target is for dependency tracking for the command ID header. |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 service_manifest("chrome_content_gpu_manifest") { | 363 service_manifest("chrome_content_gpu_manifest") { |
| 364 name = "content_gpu" | 364 name = "content_gpu" |
| 365 output_name = "chrome_content_gpu" | 365 output_name = "chrome_content_gpu" |
| 366 source = "${root_out_dir}/Packages/content_gpu/manifest.json" | 366 source = "${root_out_dir}/Packages/content_gpu/manifest.json" |
| 367 overlays = [ "//chrome/browser/chrome_content_gpu_manifest_overlay.json" ] | 367 overlays = [ "//chrome/browser/chrome_content_gpu_manifest_overlay.json" ] |
| 368 deps = [ | 368 deps = [ |
| 369 "//content/public/app:gpu_manifest", | 369 "//content/public/app:gpu_manifest", |
| 370 ] | 370 ] |
| 371 } | 371 } |
| 372 | 372 |
| 373 service_manifest("chrome_content_plugin_manifest") { |
| 374 name = "content_plugin" |
| 375 output_name = "chrome_content_plugin" |
| 376 source = "${root_out_dir}/Packages/content_plugin/manifest.json" |
| 377 overlays = |
| 378 [ "//chrome/browser/chrome_content_plugin_manifest_overlay.json" ] |
| 379 deps = [ |
| 380 "//content/public/app:plugin_manifest", |
| 381 ] |
| 382 } |
| 383 |
| 373 service_manifest("chrome_content_renderer_manifest") { | 384 service_manifest("chrome_content_renderer_manifest") { |
| 374 name = "content_renderer" | 385 name = "content_renderer" |
| 375 output_name = "chrome_content_renderer" | 386 output_name = "chrome_content_renderer" |
| 376 source = "${root_out_dir}/Packages/content_renderer/manifest.json" | 387 source = "${root_out_dir}/Packages/content_renderer/manifest.json" |
| 377 overlays = | 388 overlays = |
| 378 [ "//chrome/browser/chrome_content_renderer_manifest_overlay.json" ] | 389 [ "//chrome/browser/chrome_content_renderer_manifest_overlay.json" ] |
| 379 deps = [ | 390 deps = [ |
| 380 "//content/public/app:renderer_manifest", | 391 "//content/public/app:renderer_manifest", |
| 381 ] | 392 ] |
| 382 } | 393 } |
| 383 | 394 |
| 384 service_manifest("chrome_content_utility_manifest") { | 395 service_manifest("chrome_content_utility_manifest") { |
| 385 name = "content_utility" | 396 name = "content_utility" |
| 386 output_name = "chrome_content_utility" | 397 output_name = "chrome_content_utility" |
| 387 source = "${root_out_dir}/Packages/content_utility/manifest.json" | 398 source = "${root_out_dir}/Packages/content_utility/manifest.json" |
| 388 overlays = | 399 overlays = |
| 389 [ "//chrome/browser/chrome_content_utility_manifest_overlay.json" ] | 400 [ "//chrome/browser/chrome_content_utility_manifest_overlay.json" ] |
| 390 deps = [ | 401 deps = [ |
| 391 "//content/public/app:utility_manifest", | 402 "//content/public/app:utility_manifest", |
| 392 ] | 403 ] |
| 393 } | 404 } |
| 394 | 405 |
| 395 group("service_manifests") { | 406 group("service_manifests") { |
| 396 data_deps = [ | 407 data_deps = [ |
| 397 ":chrome_content_browser_manifest", | 408 ":chrome_content_browser_manifest", |
| 398 ":chrome_content_gpu_manifest", | 409 ":chrome_content_gpu_manifest", |
| 410 ":chrome_content_plugin_manifest", |
| 399 ":chrome_content_renderer_manifest", | 411 ":chrome_content_renderer_manifest", |
| 400 ":chrome_content_utility_manifest", | 412 ":chrome_content_utility_manifest", |
| 401 ] | 413 ] |
| 402 } | 414 } |
| 403 } | 415 } |
| OLD | NEW |