Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: chrome/app/BUILD.gn

Issue 1951683002: mus/chrome: Remove incorrect deps on mus from chrome_manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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" ]
381 } 377 }
382 378
383 mojo_application_manifest("chrome_renderer_manifest") { 379 mojo_application_manifest("chrome_renderer_manifest") {
384 type = "exe" 380 type = "exe"
385 application_name = "chrome_renderer" 381 application_name = "chrome_renderer"
386 source = "mojo/chrome_renderer_manifest.json" 382 source = "mojo/chrome_renderer_manifest.json"
387 base_manifest = "${root_out_dir}/content_renderer_manifest.json" 383 base_manifest = "${root_out_dir}/content_renderer_manifest.json"
388 base_deps = [ "//content/public/app:renderer_manifest" ] 384 base_deps = [ "//content/public/app:renderer_manifest" ]
389 } 385 }
390 386
391 group("mojo_manifests") { 387 group("mojo_manifests") {
392 data_deps = [ 388 data_deps = [
393 ":chrome_manifest", 389 ":chrome_manifest",
394 ":chrome_renderer_manifest", 390 ":chrome_renderer_manifest",
395 ] 391 ]
396 } 392 }
397 } 393 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698