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

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

Issue 365513002: Port identity_internals to mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch beautification Created 6 years, 5 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 | Annotate | Revision Log
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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//native_client/build/config/nacl_defines.gni") 8 import("//native_client/build/config/nacl_defines.gni")
9 import("//tools/grit/grit_rule.gni") 9 import("//tools/grit/grit_rule.gni")
10 10
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 # GYP version: chrome/chrome_resources.gyp:chrome_resources 613 # GYP version: chrome/chrome_resources.gyp:chrome_resources
614 # (generate_browser_resources action) 614 # (generate_browser_resources action)
615 grit("resources") { 615 grit("resources") {
616 source = "browser_resources.grd" 616 source = "browser_resources.grd"
617 outputs = [ 617 outputs = [
618 "grit/browser_resources.h", 618 "grit/browser_resources.h",
619 "browser_resources.pak", 619 "browser_resources.pak",
620 ] 620 ]
621 621
622 omnibox_mojom_file = "$root_gen_dir/chrome/browser/ui/webui/omnibox/omnibox.mo jom.js" 622 omnibox_mojom_file = "$root_gen_dir/chrome/browser/ui/webui/omnibox/omnibox.mo jom.js"
623 identity_internals_mojom_file = "$root_gen_dir/chrome/browser/ui/webui/identit y_internals/identity_internals.mojom.js"
623 624
624 grit_flags = [ 625 grit_flags = [
625 "-E", "about_credits_file=" + 626 "-E", "about_credits_file=" +
626 rebase_path(about_credits_file, root_build_dir), 627 rebase_path(about_credits_file, root_build_dir),
627 "-E", "additional_modules_list_file=" + 628 "-E", "additional_modules_list_file=" +
628 rebase_path(additional_modules_list_file, root_build_dir), 629 rebase_path(additional_modules_list_file, root_build_dir),
630 "-E", "identity_internals_mojom_file=" +
631 rebase_path(identity_internals_mojom_file, root_build_dir),
629 "-E", "omnibox_mojom_file=" + 632 "-E", "omnibox_mojom_file=" +
630 rebase_path(omnibox_mojom_file, root_build_dir), 633 rebase_path(omnibox_mojom_file, root_build_dir),
631 ] 634 ]
632 635
633 deps = [ 636 deps = [
634 ":about_credits", 637 ":about_credits",
635 ":chrome_internal_resources_gen", 638 ":chrome_internal_resources_gen",
639 "//chrome/browser/ui/webui/identity_internals:mojo_bindings",
636 "//chrome/browser/ui/webui/omnibox:mojo_bindings", 640 "//chrome/browser/ui/webui/omnibox:mojo_bindings",
637 ] 641 ]
638 } 642 }
639 643
640 # GYP version: chrome/chrome_resource.gyp:about_credits 644 # GYP version: chrome/chrome_resource.gyp:about_credits
641 action("about_credits") { 645 action("about_credits") {
642 script = "//tools/licenses.py" 646 script = "//tools/licenses.py"
643 647
644 # TODO(phajdan.jr): input dependencies so this can be regenerated 648 # TODO(phajdan.jr): input dependencies so this can be regenerated
645 # automatically when one of the credits changes. The way this should work is 649 # automatically when one of the credits changes. The way this should work is
(...skipping 11 matching lines...) Expand all
657 # TODO(GYP) write internal action 661 # TODO(GYP) write internal action
658 if (false) { #if (is_chrome_branded) { 662 if (false) { #if (is_chrome_branded) {
659 action("chrome_internal_resources_gen") { 663 action("chrome_internal_resources_gen") {
660 # TODO(GYP) 664 # TODO(GYP)
661 } 665 }
662 } else { 666 } else {
663 group("chrome_internal_resources_gen") { 667 group("chrome_internal_resources_gen") {
664 # Empty placeholder. 668 # Empty placeholder.
665 } 669 }
666 } 670 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | content/renderer/web_ui_mojo_context_state.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698