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 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 "-E", "additional_modules_list_file=" + | 631 "-E", "additional_modules_list_file=" + |
632 rebase_path(additional_modules_list_file, root_build_dir), | 632 rebase_path(additional_modules_list_file, root_build_dir), |
633 "-E", "omnibox_mojom_file=" + | 633 "-E", "omnibox_mojom_file=" + |
634 rebase_path(omnibox_mojom_file, root_build_dir), | 634 rebase_path(omnibox_mojom_file, root_build_dir), |
635 ] | 635 ] |
636 | 636 |
637 deps = [ | 637 deps = [ |
638 ":about_credits", | 638 ":about_credits", |
639 ":chrome_internal_resources_gen", | 639 ":chrome_internal_resources_gen", |
640 "//chrome/browser/ui/webui/omnibox:mojo_bindings", | 640 "//chrome/browser/ui/webui/omnibox:mojo_bindings", |
| 641 "//mojo/environment:chromium", |
641 ] | 642 ] |
642 } | 643 } |
643 | 644 |
644 # GYP version: chrome/chrome_resource.gyp:about_credits | 645 # GYP version: chrome/chrome_resource.gyp:about_credits |
645 action("about_credits") { | 646 action("about_credits") { |
646 script = "//tools/licenses.py" | 647 script = "//tools/licenses.py" |
647 | 648 |
648 # TODO(phajdan.jr): input dependencies so this can be regenerated | 649 # TODO(phajdan.jr): input dependencies so this can be regenerated |
649 # automatically when one of the credits changes. The way this should work is | 650 # automatically when one of the credits changes. The way this should work is |
650 # that licenses.py should write a .d file listing the input dependencies (see | 651 # that licenses.py should write a .d file listing the input dependencies (see |
(...skipping 10 matching lines...) Expand all Loading... |
661 # TODO(GYP) write internal action | 662 # TODO(GYP) write internal action |
662 if (false) { #if (is_chrome_branded) { | 663 if (false) { #if (is_chrome_branded) { |
663 action("chrome_internal_resources_gen") { | 664 action("chrome_internal_resources_gen") { |
664 # TODO(GYP) | 665 # TODO(GYP) |
665 } | 666 } |
666 } else { | 667 } else { |
667 group("chrome_internal_resources_gen") { | 668 group("chrome_internal_resources_gen") { |
668 # Empty placeholder. | 669 # Empty placeholder. |
669 } | 670 } |
670 } | 671 } |
OLD | NEW |