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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 "//chrome/app:generated_resources", | 934 "//chrome/app:generated_resources", |
935 "//chrome/app:google_chrome_strings", | 935 "//chrome/app:google_chrome_strings", |
936 "//chrome/app:settings_chromium_strings", | 936 "//chrome/app:settings_chromium_strings", |
937 "//chrome/app:settings_google_chrome_strings", | 937 "//chrome/app:settings_google_chrome_strings", |
938 "//chrome/app:settings_strings", | 938 "//chrome/app:settings_strings", |
939 "//chrome/app/resources:locale_settings", | 939 "//chrome/app/resources:locale_settings", |
940 ] | 940 ] |
941 } | 941 } |
942 | 942 |
943 if (is_android) { | 943 if (is_android) { |
| 944 # GYP: //chrome/chrome.gyp:data_use_ui_message_enum_java |
| 945 java_cpp_enum("data_use_ui_message_enum_javagen") { |
| 946 sources = [ |
| 947 "browser/android/data_usage/data_use_tab_ui_manager_android.cc", |
| 948 ] |
| 949 } |
| 950 |
944 # GYP: //chrome/chrome.gyp:content_setting_java | 951 # GYP: //chrome/chrome.gyp:content_setting_java |
945 java_cpp_enum("content_setting_javagen") { | 952 java_cpp_enum("content_setting_javagen") { |
946 sources = [ | 953 sources = [ |
947 "../components/content_settings/core/common/content_settings.h", | 954 "../components/content_settings/core/common/content_settings.h", |
948 ] | 955 ] |
949 } | 956 } |
950 | 957 |
951 # GYP: //chrome/chrome.gyp:content_settings_type_java | 958 # GYP: //chrome/chrome.gyp:content_settings_type_java |
952 java_cpp_enum("content_settings_type_javagen") { | 959 java_cpp_enum("content_settings_type_javagen") { |
953 sources = [ | 960 sources = [ |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1086 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1093 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1087 "//chrome/tools/build/linux/chrome-wrapper", | 1094 "//chrome/tools/build/linux/chrome-wrapper", |
1088 "//third_party/xdg-utils/scripts/xdg-mime", | 1095 "//third_party/xdg-utils/scripts/xdg-mime", |
1089 "//third_party/xdg-utils/scripts/xdg-settings", | 1096 "//third_party/xdg-utils/scripts/xdg-settings", |
1090 ] | 1097 ] |
1091 outputs = [ | 1098 outputs = [ |
1092 "$root_out_dir/{{source_file_part}}", | 1099 "$root_out_dir/{{source_file_part}}", |
1093 ] | 1100 ] |
1094 } | 1101 } |
1095 } | 1102 } |
OLD | NEW |