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

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

Issue 876783003: Use data_deps rather then deps for mojo_bindings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « build/secondary/tools/grit/grit_rule.gni ('k') | 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/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("//components/nacl/nacl_defines.gni") 8 import("//components/nacl/nacl_defines.gni")
9 9
10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 "-E", 780 "-E",
781 "additional_modules_list_file=" + 781 "additional_modules_list_file=" +
782 rebase_path(additional_modules_list_file, root_build_dir), 782 rebase_path(additional_modules_list_file, root_build_dir),
783 "-E", 783 "-E",
784 "omnibox_mojom_file=" + rebase_path(omnibox_mojom_file, root_build_dir), 784 "omnibox_mojom_file=" + rebase_path(omnibox_mojom_file, root_build_dir),
785 ] 785 ]
786 786
787 deps = [ 787 deps = [
788 ":about_credits", 788 ":about_credits",
789 ":chrome_internal_resources_gen", 789 ":chrome_internal_resources_gen",
790 "//chrome/browser/ui/webui/omnibox:mojo_bindings",
791 "//mojo/environment:chromium",
792 ] 790 ]
791 data_deps = [ "//chrome/browser/ui/webui/omnibox:mojo_bindings" ]
Slava Chigrin 2015/01/26 19:40:26 As far as I understand, this neccessary only for g
793 } 792 }
794 793
795 # GYP version: chrome/chrome_resource.gyp:about_credits 794 # GYP version: chrome/chrome_resource.gyp:about_credits
796 action("about_credits") { 795 action("about_credits") {
797 script = "//tools/licenses.py" 796 script = "//tools/licenses.py"
798 797
799 inputs = [ 798 inputs = [
800 # This is not a complete list. TODO(phajdan.jr, dbeam): licenses.py needs to 799 # This is not a complete list. TODO(phajdan.jr, dbeam): licenses.py needs to
801 # generate a .d file with all the licenses/credits that about:credits uses. 800 # generate a .d file with all the licenses/credits that about:credits uses.
802 # Then about:credits will automatically rebuild when one of them changes. 801 # Then about:credits will automatically rebuild when one of them changes.
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
1070 ] 1069 ]
1071 } 1070 }
1072 1071
1073 if (enable_wifi_bootstrapping) { 1072 if (enable_wifi_bootstrapping) {
1074 sources += [ 1073 sources += [
1075 "local_discovery/wifi/mock_wifi_manager.cc", 1074 "local_discovery/wifi/mock_wifi_manager.cc",
1076 "local_discovery/wifi/mock_wifi_manager.h", 1075 "local_discovery/wifi/mock_wifi_manager.h",
1077 ] 1076 ]
1078 } 1077 }
1079 } 1078 }
OLDNEW
« no previous file with comments | « build/secondary/tools/grit/grit_rule.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698