Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Side by Side Diff: chrome/BUILD.gn

Issue 1664113002: C++->Java string constants auto-generator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@contentsettingstype_enum_2_string
Patch Set: set upstream back to ContentSettingsType-enum-to-string Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 934 matching lines...) Expand 10 before | Expand all | Expand 10 after
945 ] 945 ]
946 } 946 }
947 947
948 # GYP: //chrome/chrome.gyp:content_setting_java 948 # GYP: //chrome/chrome.gyp:content_setting_java
949 java_cpp_enum("content_setting_javagen") { 949 java_cpp_enum("content_setting_javagen") {
950 sources = [ 950 sources = [
951 "../components/content_settings/core/common/content_settings.h", 951 "../components/content_settings/core/common/content_settings.h",
952 ] 952 ]
953 } 953 }
954 954
955 # GYP: //chrome/chrome.gyp:content_settings_type_java
956 java_cpp_string("content_settings_type_javagen") {
957 sources = [
958 "../components/content_settings/core/common/content_settings_types.cc",
959 ]
960 }
961
955 # GYP: //chrome/chrome.gyp:signin_metrics_enum_java 962 # GYP: //chrome/chrome.gyp:signin_metrics_enum_java
956 java_cpp_enum("signin_metrics_enum_javagen") { 963 java_cpp_enum("signin_metrics_enum_javagen") {
957 sources = [ 964 sources = [
958 "../components/signin/core/browser/signin_metrics.h", 965 "../components/signin/core/browser/signin_metrics.h",
959 ] 966 ]
960 } 967 }
961 968
962 # GYP: //chrome/chrome.gyp:page_info_connection_type_java 969 # GYP: //chrome/chrome.gyp:page_info_connection_type_java
963 java_cpp_enum("page_info_connection_type_javagen") { 970 java_cpp_enum("page_info_connection_type_javagen") {
964 sources = [ 971 sources = [
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1090 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1084 "//chrome/tools/build/linux/chrome-wrapper", 1091 "//chrome/tools/build/linux/chrome-wrapper",
1085 "//third_party/xdg-utils/scripts/xdg-mime", 1092 "//third_party/xdg-utils/scripts/xdg-mime",
1086 "//third_party/xdg-utils/scripts/xdg-settings", 1093 "//third_party/xdg-utils/scripts/xdg-settings",
1087 ] 1094 ]
1088 outputs = [ 1095 outputs = [
1089 "$root_out_dir/{{source_file_part}}", 1096 "$root_out_dir/{{source_file_part}}",
1090 ] 1097 ]
1091 } 1098 }
1092 } 1099 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698