| 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("//services/shell/public/service_manifest.gni") | 6 import("//services/shell/public/service_manifest.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 | 8 |
| 9 # This target is for dependency tracking for the command ID header. | 9 # This target is for dependency tracking for the command ID header. |
| 10 source_set("command_ids") { | 10 source_set("command_ids") { |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 "//components/nacl/renderer/plugin:nacl_trusted_plugin", | 336 "//components/nacl/renderer/plugin:nacl_trusted_plugin", |
| 337 ] | 337 ] |
| 338 } | 338 } |
| 339 } | 339 } |
| 340 | 340 |
| 341 if (use_aura) { | 341 if (use_aura) { |
| 342 service_manifest("chrome_manifest") { | 342 service_manifest("chrome_manifest") { |
| 343 type = "exe" | 343 type = "exe" |
| 344 name = "chrome" | 344 name = "chrome" |
| 345 source = "mojo/chrome_manifest.json" | 345 source = "mojo/chrome_manifest.json" |
| 346 base_manifest = "${root_out_dir}/content_browser_manifest.json" | 346 base_manifest = "${root_out_dir}/Packages/content_browser/manifest.json" |
| 347 base_deps = [ "//content/public/app:browser_manifest" ] | 347 base_deps = [ "//content/public/app:browser_manifest" ] |
| 348 } | 348 } |
| 349 | 349 |
| 350 service_manifest("chrome_renderer_manifest") { | 350 service_manifest("chrome_renderer_manifest") { |
| 351 type = "exe" | 351 type = "exe" |
| 352 name = "chrome_renderer" | 352 name = "chrome_renderer" |
| 353 source = "mojo/chrome_renderer_manifest.json" | 353 source = "mojo/chrome_renderer_manifest.json" |
| 354 base_manifest = "${root_out_dir}/content_renderer_manifest.json" | 354 base_manifest = "${root_out_dir}/Packages/content_renderer/manifest.json" |
| 355 base_deps = [ "//content/public/app:renderer_manifest" ] | 355 base_deps = [ "//content/public/app:renderer_manifest" ] |
| 356 } | 356 } |
| 357 | 357 |
| 358 group("mojo_manifests") { | 358 group("mojo_manifests") { |
| 359 data_deps = [ | 359 data_deps = [ |
| 360 ":chrome_manifest", | 360 ":chrome_manifest", |
| 361 ":chrome_renderer_manifest", | 361 ":chrome_renderer_manifest", |
| 362 ] | 362 ] |
| 363 } | 363 } |
| 364 } | 364 } |
| OLD | NEW |