| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/compiler/pgo/pgo.gni") | 7 import("//build/config/compiler/pgo/pgo.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 1560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1571 } | 1571 } |
| 1572 | 1572 |
| 1573 repack("browser_tests_pak") { | 1573 repack("browser_tests_pak") { |
| 1574 sources = [ | 1574 sources = [ |
| 1575 "$root_gen_dir/chrome/webui_test_resources.pak", | 1575 "$root_gen_dir/chrome/webui_test_resources.pak", |
| 1576 ] | 1576 ] |
| 1577 output = "$root_out_dir/browser_tests.pak" | 1577 output = "$root_out_dir/browser_tests.pak" |
| 1578 deps = [ | 1578 deps = [ |
| 1579 "//chrome/test/data:webui_test_resources", | 1579 "//chrome/test/data:webui_test_resources", |
| 1580 ] | 1580 ] |
| 1581 if (!is_android && !is_ios) { | |
| 1582 sources += [ "$root_gen_dir/chrome/options_test_resources.pak" ] | |
| 1583 deps += [ "//chrome/browser/resources:options_test_resources" ] | |
| 1584 } | |
| 1585 } | 1581 } |
| 1586 | 1582 |
| 1587 group("strings") { | 1583 group("strings") { |
| 1588 public_deps = [ | 1584 public_deps = [ |
| 1589 "//chrome/app:chromium_strings", | 1585 "//chrome/app:chromium_strings", |
| 1590 "//chrome/app:generated_resources", | 1586 "//chrome/app:generated_resources", |
| 1591 "//chrome/app:google_chrome_strings", | 1587 "//chrome/app:google_chrome_strings", |
| 1592 "//chrome/app/resources:locale_settings", | 1588 "//chrome/app/resources:locale_settings", |
| 1593 ] | 1589 ] |
| 1594 } | 1590 } |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1775 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1771 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1776 "//chrome/tools/build/linux/chrome-wrapper", | 1772 "//chrome/tools/build/linux/chrome-wrapper", |
| 1777 "//third_party/xdg-utils/scripts/xdg-mime", | 1773 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1778 "//third_party/xdg-utils/scripts/xdg-settings", | 1774 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1779 ] | 1775 ] |
| 1780 outputs = [ | 1776 outputs = [ |
| 1781 "$root_out_dir/{{source_file_part}}", | 1777 "$root_out_dir/{{source_file_part}}", |
| 1782 ] | 1778 ] |
| 1783 } | 1779 } |
| 1784 } | 1780 } |
| OLD | NEW |