| 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/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build/config/win/manifest.gni") | 10 import("//build/config/win/manifest.gni") |
| (...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 861 | 861 |
| 862 if (enable_hidpi) { | 862 if (enable_hidpi) { |
| 863 chrome_repack_material_percent("repack_chrome_material_200_percent") { | 863 chrome_repack_material_percent("repack_chrome_material_200_percent") { |
| 864 percent = "200" | 864 percent = "200" |
| 865 } | 865 } |
| 866 } | 866 } |
| 867 } | 867 } |
| 868 | 868 |
| 869 # GYP version: chrome/chrome_resources.gyp:chrome_strings | 869 # GYP version: chrome/chrome_resources.gyp:chrome_strings |
| 870 group("strings") { | 870 group("strings") { |
| 871 deps = [ | 871 public_deps = [ |
| 872 "//chrome/app:chromium_strings", | 872 "//chrome/app:chromium_strings", |
| 873 "//chrome/app:generated_resources", | 873 "//chrome/app:generated_resources", |
| 874 "//chrome/app:google_chrome_strings", | 874 "//chrome/app:google_chrome_strings", |
| 875 "//chrome/app:settings_strings", | 875 "//chrome/app:settings_strings", |
| 876 "//chrome/app/resources:locale_settings", | 876 "//chrome/app/resources:locale_settings", |
| 877 ] | 877 ] |
| 878 } | 878 } |
| 879 | 879 |
| 880 if (is_android) { | 880 if (is_android) { |
| 881 # GYP: //chrome/chrome.gyp:content_setting_java | 881 # GYP: //chrome/chrome.gyp:content_setting_java |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1015 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1016 "//chrome/tools/build/linux/chrome-wrapper", | 1016 "//chrome/tools/build/linux/chrome-wrapper", |
| 1017 "//third_party/xdg-utils/scripts/xdg-mime", | 1017 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1018 "//third_party/xdg-utils/scripts/xdg-settings", | 1018 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1019 ] | 1019 ] |
| 1020 outputs = [ | 1020 outputs = [ |
| 1021 "$root_out_dir/{{source_file_part}}", | 1021 "$root_out_dir/{{source_file_part}}", |
| 1022 ] | 1022 ] |
| 1023 } | 1023 } |
| 1024 } | 1024 } |
| OLD | NEW |