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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 } | 480 } |
481 if (!is_ios) { | 481 if (!is_ios) { |
482 sources += [ | 482 sources += [ |
483 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 483 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
484 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", | 484 "$root_gen_dir/content/browser/tracing/tracing_resources.pak", |
485 "$root_gen_dir/content/content_resources.pak", | 485 "$root_gen_dir/content/content_resources.pak", |
486 ] | 486 ] |
487 } | 487 } |
488 if (is_chromeos) { | 488 if (is_chromeos) { |
489 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] | 489 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] |
| 490 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ] |
490 deps += [ "//ui/file_manager:resources" ] | 491 deps += [ "//ui/file_manager:resources" ] |
| 492 deps += [ "//ui/oobe:resources" ] |
491 } | 493 } |
492 if (enable_extensions) { | 494 if (enable_extensions) { |
493 sources += [ | 495 sources += [ |
494 "$root_gen_dir/chrome/extensions_api_resources.pak", | 496 "$root_gen_dir/chrome/extensions_api_resources.pak", |
495 "$root_gen_dir/extensions/extensions_renderer_resources.pak", | 497 "$root_gen_dir/extensions/extensions_renderer_resources.pak", |
496 "$root_gen_dir/extensions/extensions_resources.pak", | 498 "$root_gen_dir/extensions/extensions_resources.pak", |
497 ] | 499 ] |
498 deps += [ "//chrome/common:extensions_api_resources" ] | 500 deps += [ "//chrome/common:extensions_api_resources" ] |
499 } | 501 } |
500 | 502 |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 | 724 |
723 args = [ | 725 args = [ |
724 rebase_path(infile, root_build_dir), | 726 rebase_path(infile, root_build_dir), |
725 rebase_path(outfile, root_build_dir), | 727 rebase_path(outfile, root_build_dir), |
726 "-e s/@@NAME@@/$name/", | 728 "-e s/@@NAME@@/$name/", |
727 "-e s/@@FILENAME@@/$filename/", | 729 "-e s/@@FILENAME@@/$filename/", |
728 "-e s/@@CONFDIR@@/$confdir/", | 730 "-e s/@@CONFDIR@@/$confdir/", |
729 ] | 731 ] |
730 } | 732 } |
731 } | 733 } |
OLD | NEW |