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

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

Issue 2753753007: Introduce Identity Service and its initial usage (Closed)
Patch Set: Response to reviews Created 3 years, 9 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 | chrome/browser/BUILD.gn » ('j') | 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("//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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 source = 383 source =
384 "//chrome/browser/chrome_content_packaged_services_manifest_overlay.json" 384 "//chrome/browser/chrome_content_packaged_services_manifest_overlay.json"
385 packaged_services = chrome_packaged_services 385 packaged_services = chrome_packaged_services
386 if (is_chromeos) { 386 if (is_chromeos) {
387 packaged_services += [ "//ash/mus:manifest" ] 387 packaged_services += [ "//ash/mus:manifest" ]
388 } 388 }
389 } 389 }
390 390
391 service_manifest("chrome_content_browser_manifest_overlay") { 391 service_manifest("chrome_content_browser_manifest_overlay") {
392 source = "//chrome/browser/chrome_content_browser_manifest_overlay.json" 392 source = "//chrome/browser/chrome_content_browser_manifest_overlay.json"
393 packaged_services = [ "//services/preferences:manifest" ] 393 packaged_services = [
394 "//services/identity:manifest",
395 "//services/preferences:manifest",
396 ]
394 } 397 }
395 398
396 service_manifest("chrome_content_gpu_manifest_overlay") { 399 service_manifest("chrome_content_gpu_manifest_overlay") {
397 source = "//chrome/browser/chrome_content_gpu_manifest_overlay.json" 400 source = "//chrome/browser/chrome_content_gpu_manifest_overlay.json"
398 } 401 }
399 402
400 service_manifest("chrome_content_plugin_manifest_overlay") { 403 service_manifest("chrome_content_plugin_manifest_overlay") {
401 source = "//chrome/browser/chrome_content_plugin_manifest_overlay.json" 404 source = "//chrome/browser/chrome_content_plugin_manifest_overlay.json"
402 } 405 }
403 406
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 chrome_embedded_services + 497 chrome_embedded_services +
495 [ ":chrome_content_packaged_services_manifest_for_mash" ] 498 [ ":chrome_content_packaged_services_manifest_for_mash" ]
496 } 499 }
497 } 500 }
498 501
499 catalog("catalog") { 502 catalog("catalog") {
500 embedded_services = chrome_embedded_services + 503 embedded_services = chrome_embedded_services +
501 [ ":chrome_content_packaged_services_manifest" ] 504 [ ":chrome_content_packaged_services_manifest" ]
502 } 505 }
503 } 506 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698