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

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

Issue 407653003: Hook up .d files and outputs to grit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comments + grit pull 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
« no previous file with comments | « build/secondary/tools/grit/stamp_grit_sources.py ('k') | chrome/browser/resources/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/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("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 9
10 about_credits_file = "$target_gen_dir/about_credits.html" 10 about_credits_file = "$target_gen_dir/about_credits.html"
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 gypi_values.chrome_browser_win_mac_wifi_bootstrapping_sources, 605 gypi_values.chrome_browser_win_mac_wifi_bootstrapping_sources,
606 ".", "//chrome") 606 ".", "//chrome")
607 } 607 }
608 } 608 }
609 } 609 }
610 610
611 # GYP version: chrome/chrome_resources.gyp:chrome_resources 611 # GYP version: chrome/chrome_resources.gyp:chrome_resources
612 # (generate_browser_resources action) 612 # (generate_browser_resources action)
613 grit("resources") { 613 grit("resources") {
614 source = "browser_resources.grd" 614 source = "browser_resources.grd"
615 outputs = [
616 "grit/browser_resources.h",
617 "browser_resources.pak",
618 ]
615 619
616 omnibox_mojom_file = "$root_gen_dir/chrome/browser/ui/webui/omnibox/omnibox.mo jom.js" 620 omnibox_mojom_file = "$root_gen_dir/chrome/browser/ui/webui/omnibox/omnibox.mo jom.js"
617 621
618 grit_flags = [ 622 grit_flags = [
619 "-E", "about_credits_file=" + 623 "-E", "about_credits_file=" +
620 rebase_path(about_credits_file, root_build_dir), 624 rebase_path(about_credits_file, root_build_dir),
621 "-E", "additional_modules_list_file=" + 625 "-E", "additional_modules_list_file=" +
622 rebase_path(additional_modules_list_file, root_build_dir), 626 rebase_path(additional_modules_list_file, root_build_dir),
623 "-E", "omnibox_mojom_file=" + 627 "-E", "omnibox_mojom_file=" +
624 rebase_path(omnibox_mojom_file, root_build_dir), 628 rebase_path(omnibox_mojom_file, root_build_dir),
(...skipping 26 matching lines...) Expand all
651 # TODO(GYP) write internal action 655 # TODO(GYP) write internal action
652 if (false) { #if (is_chrome_branded) { 656 if (false) { #if (is_chrome_branded) {
653 action("chrome_internal_resources_gen") { 657 action("chrome_internal_resources_gen") {
654 # TODO(GYP) 658 # TODO(GYP)
655 } 659 }
656 } else { 660 } else {
657 group("chrome_internal_resources_gen") { 661 group("chrome_internal_resources_gen") {
658 # Empty placeholder. 662 # Empty placeholder.
659 } 663 }
660 } 664 }
OLDNEW
« no previous file with comments | « build/secondary/tools/grit/stamp_grit_sources.py ('k') | chrome/browser/resources/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698