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

Side by Side Diff: chrome/BUILD.gn

Issue 1033733004: Part 3 of 4: Modify blink users so they use the image resources in blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix 100/200 percent packs. Created 5 years, 9 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 | « android_webview/android_webview.gyp ('k') | chrome/chrome_repack_chrome_100_percent.gypi » ('j') | no next file with comments »
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 "//chrome/browser/resources:component_extension_resources", 477 "//chrome/browser/resources:component_extension_resources",
478 "//chrome/browser/resources:options_resources", 478 "//chrome/browser/resources:options_resources",
479 "//chrome/browser/resources:settings_resources", 479 "//chrome/browser/resources:settings_resources",
480 "//chrome/browser/resources:quota_internals_resources", 480 "//chrome/browser/resources:quota_internals_resources",
481 "//chrome/browser/resources:sync_file_system_internals_resources", 481 "//chrome/browser/resources:sync_file_system_internals_resources",
482 "//content/browser/devtools:devtools_resources", 482 "//content/browser/devtools:devtools_resources",
483 ] 483 ]
484 } 484 }
485 if (!is_ios) { 485 if (!is_ios) {
486 sources += [ 486 sources += [
487 "$root_gen_dir/blink/public/resources/blink_resources.pak",
488 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", 487 "$root_gen_dir/content/browser/tracing/tracing_resources.pak",
489 "$root_gen_dir/content/content_resources.pak", 488 "$root_gen_dir/content/content_resources.pak",
490 ] 489 ]
491 } 490 }
492 if (is_chromeos) { 491 if (is_chromeos) {
493 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] 492 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ]
494 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ] 493 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ]
495 deps += [ "//ui/file_manager:resources" ] 494 deps += [ "//ui/file_manager:resources" ]
496 deps += [ "//ui/oobe:resources" ] 495 deps += [ "//ui/oobe:resources" ]
497 } 496 }
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
580 ] 579 ]
581 580
582 deps = [ 581 deps = [
583 "//chrome/app/theme:theme_resources", 582 "//chrome/app/theme:theme_resources",
584 "//chrome/renderer:resources", 583 "//chrome/renderer:resources",
585 "//components/strings", 584 "//components/strings",
586 "//net:net_resources", 585 "//net:net_resources",
587 ] 586 ]
588 587
589 if (!is_ios) { 588 if (!is_ios) {
590 sources += [ "$root_gen_dir/content/app/resources/content_resources_${perc ent}_percent.pak" ] 589 sources += [
590 "$root_gen_dir/blink/public/resources/blink_resources_${percent}_percent .pak",
591 "$root_gen_dir/content/app/resources/content_resources_${percent}_percen t.pak",
592 ]
591 deps += [ "//content:resources" ] 593 deps += [ "//content:resources" ]
592 } 594 }
593 if (use_ash) { 595 if (use_ash) {
594 sources += 596 sources +=
595 [ "$root_gen_dir/ash/resources/ash_resources_${percent}_percent.pak" ] 597 [ "$root_gen_dir/ash/resources/ash_resources_${percent}_percent.pak" ]
596 deps += [ "//ash/resources" ] 598 deps += [ "//ash/resources" ]
597 } 599 }
598 if (is_chromeos) { 600 if (is_chromeos) {
599 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${ percent}_percent.pak" ] 601 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${ percent}_percent.pak" ]
600 deps += [ "//ui/chromeos/resources" ] 602 deps += [ "//ui/chromeos/resources" ]
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 731
730 args = [ 732 args = [
731 rebase_path(infile, root_build_dir), 733 rebase_path(infile, root_build_dir),
732 rebase_path(outfile, root_build_dir), 734 rebase_path(outfile, root_build_dir),
733 "-e s/@@NAME@@/$name/", 735 "-e s/@@NAME@@/$name/",
734 "-e s/@@FILENAME@@/$filename/", 736 "-e s/@@FILENAME@@/$filename/",
735 "-e s/@@CONFDIR@@/$confdir/", 737 "-e s/@@CONFDIR@@/$confdir/",
736 ] 738 ]
737 } 739 }
738 } 740 }
OLDNEW
« no previous file with comments | « android_webview/android_webview.gyp ('k') | chrome/chrome_repack_chrome_100_percent.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698