| 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 } | 942 } |
| 943 | 943 |
| 944 if (is_android) { | 944 if (is_android) { |
| 945 # GYP: //chrome/chrome.gyp:content_setting_java | 945 # GYP: //chrome/chrome.gyp:content_setting_java |
| 946 java_cpp_enum("content_setting_javagen") { | 946 java_cpp_enum("content_setting_javagen") { |
| 947 sources = [ | 947 sources = [ |
| 948 "../components/content_settings/core/common/content_settings.h", | 948 "../components/content_settings/core/common/content_settings.h", |
| 949 ] | 949 ] |
| 950 } | 950 } |
| 951 | 951 |
| 952 # GYP: //chrome/chrome.gyp:content_settings_type_java |
| 953 java_cpp_string("content_settings_type_javagen") { |
| 954 sources = [ |
| 955 "../components/content_settings/core/common/content_settings_types.cc", |
| 956 ] |
| 957 } |
| 958 |
| 952 # GYP: //chrome/chrome.gyp:signin_metrics_enum_java | 959 # GYP: //chrome/chrome.gyp:signin_metrics_enum_java |
| 953 java_cpp_enum("signin_metrics_enum_javagen") { | 960 java_cpp_enum("signin_metrics_enum_javagen") { |
| 954 sources = [ | 961 sources = [ |
| 955 "../components/signin/core/browser/signin_metrics.h", | 962 "../components/signin/core/browser/signin_metrics.h", |
| 956 ] | 963 ] |
| 957 } | 964 } |
| 958 | 965 |
| 959 # GYP: //chrome/chrome.gyp:page_info_connection_type_java | 966 # GYP: //chrome/chrome.gyp:page_info_connection_type_java |
| 960 java_cpp_enum("page_info_connection_type_javagen") { | 967 java_cpp_enum("page_info_connection_type_javagen") { |
| 961 sources = [ | 968 sources = [ |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1087 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1081 "//chrome/tools/build/linux/chrome-wrapper", | 1088 "//chrome/tools/build/linux/chrome-wrapper", |
| 1082 "//third_party/xdg-utils/scripts/xdg-mime", | 1089 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1083 "//third_party/xdg-utils/scripts/xdg-settings", | 1090 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1084 ] | 1091 ] |
| 1085 outputs = [ | 1092 outputs = [ |
| 1086 "$root_out_dir/{{source_file_part}}", | 1093 "$root_out_dir/{{source_file_part}}", |
| 1087 ] | 1094 ] |
| 1088 } | 1095 } |
| 1089 } | 1096 } |
| OLD | NEW |