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/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 Loading... |
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", |
487 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | 488 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", |
488 "$root_gen_dir/content/content_resources.pak", | 489 "$root_gen_dir/content/content_resources.pak", |
489 ] | 490 ] |
490 } | 491 } |
491 if (is_chromeos) { | 492 if (is_chromeos) { |
492 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] | 493 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] |
493 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ] | 494 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ] |
494 deps += [ "//ui/file_manager:resources" ] | 495 deps += [ "//ui/file_manager:resources" ] |
495 deps += [ "//ui/oobe:resources" ] | 496 deps += [ "//ui/oobe:resources" ] |
496 } | 497 } |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
579 ] | 580 ] |
580 | 581 |
581 deps = [ | 582 deps = [ |
582 "//chrome/app/theme:theme_resources", | 583 "//chrome/app/theme:theme_resources", |
583 "//chrome/renderer:resources", | 584 "//chrome/renderer:resources", |
584 "//components/strings", | 585 "//components/strings", |
585 "//net:net_resources", | 586 "//net:net_resources", |
586 ] | 587 ] |
587 | 588 |
588 if (!is_ios) { | 589 if (!is_ios) { |
589 sources += [ | 590 sources += [ "$root_gen_dir/content/app/resources/content_resources_${perc
ent}_percent.pak" ] |
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 ] | |
593 deps += [ "//content:resources" ] | 591 deps += [ "//content:resources" ] |
594 } | 592 } |
595 if (use_ash) { | 593 if (use_ash) { |
596 sources += | 594 sources += |
597 [ "$root_gen_dir/ash/resources/ash_resources_${percent}_percent.pak" ] | 595 [ "$root_gen_dir/ash/resources/ash_resources_${percent}_percent.pak" ] |
598 deps += [ "//ash/resources" ] | 596 deps += [ "//ash/resources" ] |
599 } | 597 } |
600 if (is_chromeos) { | 598 if (is_chromeos) { |
601 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${
percent}_percent.pak" ] | 599 sources += [ "$root_gen_dir/ui/chromeos/resources/ui_chromeos_resources_${
percent}_percent.pak" ] |
602 deps += [ "//ui/chromeos/resources" ] | 600 deps += [ "//ui/chromeos/resources" ] |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 | 729 |
732 args = [ | 730 args = [ |
733 rebase_path(infile, root_build_dir), | 731 rebase_path(infile, root_build_dir), |
734 rebase_path(outfile, root_build_dir), | 732 rebase_path(outfile, root_build_dir), |
735 "-e s/@@NAME@@/$name/", | 733 "-e s/@@NAME@@/$name/", |
736 "-e s/@@FILENAME@@/$filename/", | 734 "-e s/@@FILENAME@@/$filename/", |
737 "-e s/@@CONFDIR@@/$confdir/", | 735 "-e s/@@CONFDIR@@/$confdir/", |
738 ] | 736 ] |
739 } | 737 } |
740 } | 738 } |
OLD | NEW |