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/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
10 import("//chrome/chrome_repack_locales.gni") | 10 import("//chrome/chrome_repack_locales.gni") |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 deps += [ "//ui/views/resources" ] | 685 deps += [ "//ui/views/resources" ] |
686 } | 686 } |
687 if (is_chromeos) { | 687 if (is_chromeos) { |
688 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${
percent}_percent.pak" ] | 688 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${
percent}_percent.pak" ] |
689 deps += [ "//ui/chromeos/resources" ] | 689 deps += [ "//ui/chromeos/resources" ] |
690 } | 690 } |
691 if (enable_extensions) { | 691 if (enable_extensions) { |
692 sources += [ "$root_gen_dir/extensions/extensions_browser_resources_${perc
ent}_percent.pak" ] | 692 sources += [ "$root_gen_dir/extensions/extensions_browser_resources_${perc
ent}_percent.pak" ] |
693 deps += [ "//extensions:extensions_browser_resources" ] | 693 deps += [ "//extensions:extensions_browser_resources" ] |
694 } | 694 } |
| 695 if (enable_app_list) { |
| 696 sources += [ "$root_gen_dir/ui/app_list/resources/app_list_resources_${per
cent}_percent.pak" ] |
| 697 deps += [ "//ui/app_list/resources" ] |
| 698 } |
695 | 699 |
696 output = repack_output_file | 700 output = repack_output_file |
697 } | 701 } |
698 | 702 |
699 copy(copy_name) { | 703 copy(copy_name) { |
700 visibility = [ ":*" ] | 704 visibility = [ ":*" ] |
701 deps = [ | 705 deps = [ |
702 ":$repack_name", | 706 ":$repack_name", |
703 ] | 707 ] |
704 sources = [ | 708 sources = [ |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 rebase_path(chrome_binary, root_build_dir), | 912 rebase_path(chrome_binary, root_build_dir), |
909 rebase_path(symbol_file, root_build_dir), | 913 rebase_path(symbol_file, root_build_dir), |
910 ] | 914 ] |
911 | 915 |
912 deps = [ | 916 deps = [ |
913 ":chrome", | 917 ":chrome", |
914 dump_syms_label, | 918 dump_syms_label, |
915 ] | 919 ] |
916 } | 920 } |
917 } | 921 } |
OLD | NEW |