Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: chrome/BUILD.gn

Issue 1257223005: Move resources used by app_list into app_list/resources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_repack_chrome_100_percent.gypi » ('j') | ui/app_list/app_list.grd » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_repack_chrome_100_percent.gypi » ('j') | ui/app_list/app_list.grd » ('J')

Powered by Google App Engine
This is Rietveld 408576698