| 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("//chrome/chrome_repack_locales.gni") | 9 import("//chrome/chrome_repack_locales.gni") |
| 10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 "$root_gen_dir/content/content_resources.pak", | 537 "$root_gen_dir/content/content_resources.pak", |
| 538 ] | 538 ] |
| 539 deps += [ | 539 deps += [ |
| 540 "//content:resources", | 540 "//content:resources", |
| 541 "//content/browser/tracing:resources", | 541 "//content/browser/tracing:resources", |
| 542 "//third_party/WebKit/public:resources", | 542 "//third_party/WebKit/public:resources", |
| 543 ] | 543 ] |
| 544 } | 544 } |
| 545 if (is_chromeos) { | 545 if (is_chromeos) { |
| 546 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] | 546 sources += [ "$root_gen_dir/ui/file_manager/file_manager_resources.pak" ] |
| 547 sources += [ "$root_gen_dir/ui/oobe/oobe_resources.pak" ] | |
| 548 deps += [ "//ui/file_manager:resources" ] | 547 deps += [ "//ui/file_manager:resources" ] |
| 549 deps += [ "//ui/oobe:resources" ] | |
| 550 } | 548 } |
| 551 if (enable_extensions) { | 549 if (enable_extensions) { |
| 552 sources += [ | 550 sources += [ |
| 553 "$root_gen_dir/chrome/extensions_api_resources.pak", | 551 "$root_gen_dir/chrome/extensions_api_resources.pak", |
| 554 "$root_gen_dir/extensions/extensions_renderer_resources.pak", | 552 "$root_gen_dir/extensions/extensions_renderer_resources.pak", |
| 555 "$root_gen_dir/extensions/extensions_resources.pak", | 553 "$root_gen_dir/extensions/extensions_resources.pak", |
| 556 ] | 554 ] |
| 557 deps += [ | 555 deps += [ |
| 558 "//chrome/common:extensions_api_resources", | 556 "//chrome/common:extensions_api_resources", |
| 559 "//extensions:extensions_resources", | 557 "//extensions:extensions_resources", |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 | 800 |
| 803 args = [ | 801 args = [ |
| 804 rebase_path(infile, root_build_dir), | 802 rebase_path(infile, root_build_dir), |
| 805 rebase_path(outfile, root_build_dir), | 803 rebase_path(outfile, root_build_dir), |
| 806 "-e s/@@NAME@@/$name/", | 804 "-e s/@@NAME@@/$name/", |
| 807 "-e s/@@FILENAME@@/$filename/", | 805 "-e s/@@FILENAME@@/$filename/", |
| 808 "-e s/@@CONFDIR@@/$confdir/", | 806 "-e s/@@CONFDIR@@/$confdir/", |
| 809 ] | 807 ] |
| 810 } | 808 } |
| 811 } | 809 } |
| OLD | NEW |