| 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 output = "$root_gen_dir/repack/resources.pak" | 566 output = "$root_gen_dir/repack/resources.pak" |
| 567 } else { | 567 } else { |
| 568 output = "$root_out_dir/resources.pak" | 568 output = "$root_out_dir/resources.pak" |
| 569 } | 569 } |
| 570 } | 570 } |
| 571 | 571 |
| 572 # GYP version: chrome/chrome_resources.gyp:browser_tests_pak | 572 # GYP version: chrome/chrome_resources.gyp:browser_tests_pak |
| 573 repack("browser_tests_pak") { | 573 repack("browser_tests_pak") { |
| 574 sources = [ | 574 sources = [ |
| 575 "$root_gen_dir/chrome/options_test_resources.pak", | 575 "$root_gen_dir/chrome/options_test_resources.pak", |
| 576 "$root_gen_dir/chrome/webui_test_resources.pak", |
| 576 ] | 577 ] |
| 577 output = "$root_out_dir/browser_tests.pak" | 578 output = "$root_out_dir/browser_tests.pak" |
| 578 deps = [ | 579 deps = [ |
| 579 "//chrome/browser/resources:options_test_resources", | 580 "//chrome/browser/resources:options_test_resources", |
| 581 "//chrome/test/data/webui:webui_test_resources", |
| 580 ] | 582 ] |
| 581 } | 583 } |
| 582 | 584 |
| 583 # Collects per-locale grit files from many sources into global per-locale files. | 585 # Collects per-locale grit files from many sources into global per-locale files. |
| 584 chrome_repack_locales("repack_locales_pack") { | 586 chrome_repack_locales("repack_locales_pack") { |
| 585 visibility = [ ":*" ] | 587 visibility = [ ":*" ] |
| 586 | 588 |
| 587 input_locales = locales | 589 input_locales = locales |
| 588 | 590 |
| 589 if (is_mac) { | 591 if (is_mac) { |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 rebase_path(chrome_binary, root_build_dir), | 891 rebase_path(chrome_binary, root_build_dir), |
| 890 rebase_path(symbol_file, root_build_dir), | 892 rebase_path(symbol_file, root_build_dir), |
| 891 ] | 893 ] |
| 892 | 894 |
| 893 deps = [ | 895 deps = [ |
| 894 ":chrome", | 896 ":chrome", |
| 895 dump_syms_label, | 897 dump_syms_label, |
| 896 ] | 898 ] |
| 897 } | 899 } |
| 898 } | 900 } |
| OLD | NEW |