| 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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 "//chrome/app/resources:locale_settings", | 913 "//chrome/app/resources:locale_settings", |
| 914 ] | 914 ] |
| 915 } | 915 } |
| 916 | 916 |
| 917 if (is_android) { | 917 if (is_android) { |
| 918 # GYP: //chrome/chrome.gyp:content_setting_java | 918 # GYP: //chrome/chrome.gyp:content_setting_java |
| 919 java_cpp_enum("content_setting_javagen") { | 919 java_cpp_enum("content_setting_javagen") { |
| 920 sources = [ | 920 sources = [ |
| 921 "../components/content_settings/core/common/content_settings.h", | 921 "../components/content_settings/core/common/content_settings.h", |
| 922 ] | 922 ] |
| 923 outputs = [ | |
| 924 "org/chromium/chrome/browser/preferences/website/ContentSettingValues.java
", | |
| 925 ] | |
| 926 } | 923 } |
| 927 | 924 |
| 928 # GYP: //chrome/chrome.gyp:content_settings_type_java | 925 # GYP: //chrome/chrome.gyp:content_settings_type_java |
| 929 java_cpp_enum("content_settings_type_javagen") { | 926 java_cpp_enum("content_settings_type_javagen") { |
| 930 sources = [ | 927 sources = [ |
| 931 "../components/content_settings/core/common/content_settings_types.h", | 928 "../components/content_settings/core/common/content_settings_types.h", |
| 932 ] | 929 ] |
| 933 outputs = [ | |
| 934 "org/chromium/chrome/browser/ContentSettingsType.java", | |
| 935 ] | |
| 936 } | 930 } |
| 937 | 931 |
| 938 # GYP: //chrome/chrome.gyp:page_info_connection_type_java | 932 # GYP: //chrome/chrome.gyp:page_info_connection_type_java |
| 939 java_cpp_enum("page_info_connection_type_javagen") { | 933 java_cpp_enum("page_info_connection_type_javagen") { |
| 940 sources = [ | 934 sources = [ |
| 941 "browser/ui/android/website_settings_popup_android.h", | 935 "browser/ui/android/website_settings_popup_android.h", |
| 942 ] | 936 ] |
| 943 outputs = [ | |
| 944 "org/chromium/chrome/browser/PageInfoConnectionType.java", | |
| 945 ] | |
| 946 } | 937 } |
| 947 | 938 |
| 948 # GYP: //chrome/chrome_android.gypi:chrome_android_core | 939 # GYP: //chrome/chrome_android.gypi:chrome_android_core |
| 949 static_library("chrome_android_core") { | 940 static_library("chrome_android_core") { |
| 950 sources = [ | 941 sources = [ |
| 951 "app/android/chrome_android_initializer.cc", | 942 "app/android/chrome_android_initializer.cc", |
| 952 "app/android/chrome_android_initializer.h", | 943 "app/android/chrome_android_initializer.h", |
| 953 "app/android/chrome_jni_onload.cc", | 944 "app/android/chrome_jni_onload.cc", |
| 954 "app/android/chrome_jni_onload.h", | 945 "app/android/chrome_jni_onload.h", |
| 955 "app/android/chrome_main_delegate_android.cc", | 946 "app/android/chrome_main_delegate_android.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1053 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1044 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1054 "//chrome/tools/build/linux/chrome-wrapper", | 1045 "//chrome/tools/build/linux/chrome-wrapper", |
| 1055 "//third_party/xdg-utils/scripts/xdg-mime", | 1046 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1056 "//third_party/xdg-utils/scripts/xdg-settings", | 1047 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1057 ] | 1048 ] |
| 1058 outputs = [ | 1049 outputs = [ |
| 1059 "$root_out_dir/{{source_file_part}}", | 1050 "$root_out_dir/{{source_file_part}}", |
| 1060 ] | 1051 ] |
| 1061 } | 1052 } |
| 1062 } | 1053 } |
| OLD | NEW |