| 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("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 } | 367 } |
| 368 } | 368 } |
| 369 | 369 |
| 370 if (use_aura) { | 370 if (use_aura) { |
| 371 mojo_application_manifest("chrome_manifest") { | 371 mojo_application_manifest("chrome_manifest") { |
| 372 type = "exe" | 372 type = "exe" |
| 373 application_name = "chrome" | 373 application_name = "chrome" |
| 374 source = "mojo/chrome_manifest.json" | 374 source = "mojo/chrome_manifest.json" |
| 375 base_manifest = "${root_out_dir}/content_browser_manifest.json" | 375 base_manifest = "${root_out_dir}/content_browser_manifest.json" |
| 376 base_deps = [ "//content/public/app:browser_manifest" ] | 376 base_deps = [ "//content/public/app:browser_manifest" ] |
| 377 deps = [ |
| 378 "//components/mus:manifest", |
| 379 ] |
| 380 packaged_applications = [ "mus" ] |
| 377 } | 381 } |
| 378 | 382 |
| 379 mojo_application_manifest("chrome_renderer_manifest") { | 383 mojo_application_manifest("chrome_renderer_manifest") { |
| 380 type = "exe" | 384 type = "exe" |
| 381 application_name = "chrome_renderer" | 385 application_name = "chrome_renderer" |
| 382 source = "mojo/chrome_renderer_manifest.json" | 386 source = "mojo/chrome_renderer_manifest.json" |
| 383 base_manifest = "${root_out_dir}/content_renderer_manifest.json" | 387 base_manifest = "${root_out_dir}/content_renderer_manifest.json" |
| 384 base_deps = [ "//content/public/app:renderer_manifest" ] | 388 base_deps = [ "//content/public/app:renderer_manifest" ] |
| 385 } | 389 } |
| 386 | 390 |
| 387 group("mojo_manifests") { | 391 group("mojo_manifests") { |
| 388 data_deps = [ | 392 data_deps = [ |
| 389 ":chrome_manifest", | 393 ":chrome_manifest", |
| 390 ":chrome_renderer_manifest", | 394 ":chrome_renderer_manifest", |
| 391 ] | 395 ] |
| 392 } | 396 } |
| 393 } | 397 } |
| OLD | NEW |