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