| 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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", |
| 790 ] | 792 ] |
| 791 data_deps = [ "//chrome/browser/ui/webui/omnibox:mojo_bindings" ] | |
| 792 } | 793 } |
| 793 | 794 |
| 794 # GYP version: chrome/chrome_resource.gyp:about_credits | 795 # GYP version: chrome/chrome_resource.gyp:about_credits |
| 795 action("about_credits") { | 796 action("about_credits") { |
| 796 script = "//tools/licenses.py" | 797 script = "//tools/licenses.py" |
| 797 | 798 |
| 798 inputs = [ | 799 inputs = [ |
| 799 # This is not a complete list. TODO(phajdan.jr, dbeam): licenses.py needs to | 800 # This is not a complete list. TODO(phajdan.jr, dbeam): licenses.py needs to |
| 800 # generate a .d file with all the licenses/credits that about:credits uses. | 801 # generate a .d file with all the licenses/credits that about:credits uses. |
| 801 # Then about:credits will automatically rebuild when one of them changes. | 802 # Then about:credits will automatically rebuild when one of them changes. |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1069 ] | 1070 ] |
| 1070 } | 1071 } |
| 1071 | 1072 |
| 1072 if (enable_wifi_bootstrapping) { | 1073 if (enable_wifi_bootstrapping) { |
| 1073 sources += [ | 1074 sources += [ |
| 1074 "local_discovery/wifi/mock_wifi_manager.cc", | 1075 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1075 "local_discovery/wifi/mock_wifi_manager.h", | 1076 "local_discovery/wifi/mock_wifi_manager.h", |
| 1076 ] | 1077 ] |
| 1077 } | 1078 } |
| 1078 } | 1079 } |
| OLD | NEW |