OLD | NEW |
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 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
796 "-E", | 796 "-E", |
797 "additional_modules_list_file=" + | 797 "additional_modules_list_file=" + |
798 rebase_path(additional_modules_list_file, root_build_dir), | 798 rebase_path(additional_modules_list_file, root_build_dir), |
799 "-E", | 799 "-E", |
800 "omnibox_mojom_file=" + rebase_path(omnibox_mojom_file, root_build_dir), | 800 "omnibox_mojom_file=" + rebase_path(omnibox_mojom_file, root_build_dir), |
801 ] | 801 ] |
802 | 802 |
803 deps = [ | 803 deps = [ |
804 ":about_credits", | 804 ":about_credits", |
805 ":chrome_internal_resources_gen", | 805 ":chrome_internal_resources_gen", |
806 "//chrome/browser/ui/webui/omnibox:mojo_bindings", | 806 ] |
807 "//mojo/environment:chromium", | 807 inputs = [ |
| 808 omnibox_mojom_file, |
808 ] | 809 ] |
809 } | 810 } |
810 | 811 |
811 # GYP version: chrome/chrome_resource.gyp:about_credits | 812 # GYP version: chrome/chrome_resource.gyp:about_credits |
812 action("about_credits") { | 813 action("about_credits") { |
813 script = "//tools/licenses.py" | 814 script = "//tools/licenses.py" |
814 | 815 |
815 inputs = [ | 816 inputs = [ |
816 # This is not a complete list. TODO(phajdan.jr, dbeam): licenses.py needs to | 817 # This is not a complete list. TODO(phajdan.jr, dbeam): licenses.py needs to |
817 # generate a .d file with all the licenses/credits that about:credits uses. | 818 # generate a .d file with all the licenses/credits that about:credits uses. |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1088 ] | 1089 ] |
1089 } | 1090 } |
1090 | 1091 |
1091 if (enable_wifi_bootstrapping) { | 1092 if (enable_wifi_bootstrapping) { |
1092 sources += [ | 1093 sources += [ |
1093 "local_discovery/wifi/mock_wifi_manager.cc", | 1094 "local_discovery/wifi/mock_wifi_manager.cc", |
1094 "local_discovery/wifi/mock_wifi_manager.h", | 1095 "local_discovery/wifi/mock_wifi_manager.h", |
1095 ] | 1096 ] |
1096 } | 1097 } |
1097 } | 1098 } |
OLD | NEW |