| 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 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 deps += [ "//ui/views/resources" ] | 688 deps += [ "//ui/views/resources" ] |
| 689 } | 689 } |
| 690 if (is_chromeos) { | 690 if (is_chromeos) { |
| 691 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${
percent}_percent.pak" ] | 691 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${
percent}_percent.pak" ] |
| 692 deps += [ "//ui/chromeos/resources" ] | 692 deps += [ "//ui/chromeos/resources" ] |
| 693 } | 693 } |
| 694 if (enable_extensions) { | 694 if (enable_extensions) { |
| 695 sources += [ "$root_gen_dir/extensions/extensions_browser_resources_${perc
ent}_percent.pak" ] | 695 sources += [ "$root_gen_dir/extensions/extensions_browser_resources_${perc
ent}_percent.pak" ] |
| 696 deps += [ "//extensions:extensions_browser_resources" ] | 696 deps += [ "//extensions:extensions_browser_resources" ] |
| 697 } | 697 } |
| 698 if (enable_app_list) { |
| 699 sources += [ "$root_gen_dir/ui/app_list/resources/app_list_resources_${per
cent}_percent.pak" ] |
| 700 deps += [ "//ui/app_list/resources" ] |
| 701 } |
| 698 | 702 |
| 699 output = repack_output_file | 703 output = repack_output_file |
| 700 } | 704 } |
| 701 | 705 |
| 702 copy(copy_name) { | 706 copy(copy_name) { |
| 703 visibility = [ ":*" ] | 707 visibility = [ ":*" ] |
| 704 deps = [ | 708 deps = [ |
| 705 ":$repack_name", | 709 ":$repack_name", |
| 706 ] | 710 ] |
| 707 sources = [ | 711 sources = [ |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 rebase_path(chrome_binary, root_build_dir), | 915 rebase_path(chrome_binary, root_build_dir), |
| 912 rebase_path(symbol_file, root_build_dir), | 916 rebase_path(symbol_file, root_build_dir), |
| 913 ] | 917 ] |
| 914 | 918 |
| 915 deps = [ | 919 deps = [ |
| 916 ":chrome", | 920 ":chrome", |
| 917 dump_syms_label, | 921 dump_syms_label, |
| 918 ] | 922 ] |
| 919 } | 923 } |
| 920 } | 924 } |
| OLD | NEW |