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/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/locales.gni") | 8 import("//build/config/locales.gni") |
9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
932 ] | 932 ] |
933 } | 933 } |
934 | 934 |
935 # GYP: //chrome/chrome.gyp:content_settings_type_java | 935 # GYP: //chrome/chrome.gyp:content_settings_type_java |
936 java_cpp_enum("content_settings_type_javagen") { | 936 java_cpp_enum("content_settings_type_javagen") { |
937 sources = [ | 937 sources = [ |
938 "../components/content_settings/core/common/content_settings_types.h", | 938 "../components/content_settings/core/common/content_settings_types.h", |
939 ] | 939 ] |
940 } | 940 } |
941 | 941 |
| 942 # GYP: //chrome/chrome.gyp:signin_metrics_enum_java |
| 943 java_cpp_enum("signin_metrics_enum_javagen") { |
| 944 sources = [ |
| 945 "../components/signin/core/browser/signin_metrics.h", |
| 946 ] |
| 947 } |
| 948 |
942 # GYP: //chrome/chrome.gyp:page_info_connection_type_java | 949 # GYP: //chrome/chrome.gyp:page_info_connection_type_java |
943 java_cpp_enum("page_info_connection_type_javagen") { | 950 java_cpp_enum("page_info_connection_type_javagen") { |
944 sources = [ | 951 sources = [ |
945 "browser/ui/android/website_settings_popup_android.h", | 952 "browser/ui/android/website_settings_popup_android.h", |
946 ] | 953 ] |
947 } | 954 } |
948 | 955 |
949 # Some android targets still depend on --gc-sections to link. | 956 # Some android targets still depend on --gc-sections to link. |
950 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). | 957 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). |
951 config("gc_sections") { | 958 config("gc_sections") { |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1070 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1064 "//chrome/tools/build/linux/chrome-wrapper", | 1071 "//chrome/tools/build/linux/chrome-wrapper", |
1065 "//third_party/xdg-utils/scripts/xdg-mime", | 1072 "//third_party/xdg-utils/scripts/xdg-mime", |
1066 "//third_party/xdg-utils/scripts/xdg-settings", | 1073 "//third_party/xdg-utils/scripts/xdg-settings", |
1067 ] | 1074 ] |
1068 outputs = [ | 1075 outputs = [ |
1069 "$root_out_dir/{{source_file_part}}", | 1076 "$root_out_dir/{{source_file_part}}", |
1070 ] | 1077 ] |
1071 } | 1078 } |
1072 } | 1079 } |
OLD | NEW |