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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 "-E", | 845 "-E", |
846 "additional_modules_list_file=" + | 846 "additional_modules_list_file=" + |
847 rebase_path(additional_modules_list_file, root_build_dir), | 847 rebase_path(additional_modules_list_file, root_build_dir), |
848 "-E", | 848 "-E", |
849 "omnibox_mojom_file=" + rebase_path(omnibox_mojom_file, root_build_dir), | 849 "omnibox_mojom_file=" + rebase_path(omnibox_mojom_file, root_build_dir), |
850 ] | 850 ] |
851 | 851 |
852 deps = [ | 852 deps = [ |
853 ":about_credits", | 853 ":about_credits", |
854 ":chrome_internal_resources_gen", | 854 ":chrome_internal_resources_gen", |
| 855 |
| 856 # Depend only on the generated mojo bindings since we read the .mojom.js |
| 857 # file, rather than the whole mojo target which will link the C++ bindings. |
| 858 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", |
855 ] | 859 ] |
856 inputs = [ | 860 inputs = [ |
857 omnibox_mojom_file, | 861 omnibox_mojom_file, |
858 ] | 862 ] |
859 } | 863 } |
860 | 864 |
861 # GYP version: chrome/chrome_resource.gyp:about_credits | 865 # GYP version: chrome/chrome_resource.gyp:about_credits |
862 action("about_credits") { | 866 action("about_credits") { |
863 script = "//tools/licenses.py" | 867 script = "//tools/licenses.py" |
864 | 868 |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1140 ] | 1144 ] |
1141 } | 1145 } |
1142 | 1146 |
1143 if (enable_wifi_bootstrapping) { | 1147 if (enable_wifi_bootstrapping) { |
1144 sources += [ | 1148 sources += [ |
1145 "local_discovery/wifi/mock_wifi_manager.cc", | 1149 "local_discovery/wifi/mock_wifi_manager.cc", |
1146 "local_discovery/wifi/mock_wifi_manager.h", | 1150 "local_discovery/wifi/mock_wifi_manager.h", |
1147 ] | 1151 ] |
1148 } | 1152 } |
1149 } | 1153 } |
OLD | NEW |