Chromium Code Reviews| 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 ] | 935 ] |
| 936 } | 936 } |
| 937 | 937 |
| 938 # GYP: //chrome/chrome.gyp:content_settings_type_java | 938 # GYP: //chrome/chrome.gyp:content_settings_type_java |
| 939 java_cpp_enum("content_settings_type_javagen") { | 939 java_cpp_enum("content_settings_type_javagen") { |
| 940 sources = [ | 940 sources = [ |
| 941 "../components/content_settings/core/common/content_settings_types.h", | 941 "../components/content_settings/core/common/content_settings_types.h", |
| 942 ] | 942 ] |
| 943 } | 943 } |
| 944 | 944 |
| 945 # GYP: //chrome/chrome.gyp:signin_metrics_enum_java | |
| 946 java_cpp_enum("signin_metrics_enum_javagen") { | |
|
nyquist
2016/01/26 23:09:37
Do you need to depend on this in chrome/android/BU
gogerald1
2016/01/27 16:50:39
Done.
| |
| 947 sources = [ | |
| 948 "../components/signin/core/browser/signin_metrics.h", | |
|
nyquist
2016/01/26 23:09:37
It's a little bit odd to me that this does not liv
gogerald1
2016/01/27 16:50:39
Yes, I guess the reason is the generated enums are
| |
| 949 ] | |
| 950 } | |
| 951 | |
| 945 # GYP: //chrome/chrome.gyp:page_info_connection_type_java | 952 # GYP: //chrome/chrome.gyp:page_info_connection_type_java |
| 946 java_cpp_enum("page_info_connection_type_javagen") { | 953 java_cpp_enum("page_info_connection_type_javagen") { |
| 947 sources = [ | 954 sources = [ |
| 948 "browser/ui/android/website_settings_popup_android.h", | 955 "browser/ui/android/website_settings_popup_android.h", |
| 949 ] | 956 ] |
| 950 } | 957 } |
| 951 | 958 |
| 952 # Some android targets still depend on --gc-sections to link. | 959 # Some android targets still depend on --gc-sections to link. |
| 953 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). | 960 # TODO: remove --gc-sections for Debug builds (crbug.com/159847). |
| 954 config("gc_sections") { | 961 config("gc_sections") { |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1066 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1073 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1067 "//chrome/tools/build/linux/chrome-wrapper", | 1074 "//chrome/tools/build/linux/chrome-wrapper", |
| 1068 "//third_party/xdg-utils/scripts/xdg-mime", | 1075 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1069 "//third_party/xdg-utils/scripts/xdg-settings", | 1076 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1070 ] | 1077 ] |
| 1071 outputs = [ | 1078 outputs = [ |
| 1072 "$root_out_dir/{{source_file_part}}", | 1079 "$root_out_dir/{{source_file_part}}", |
| 1073 ] | 1080 ] |
| 1074 } | 1081 } |
| 1075 } | 1082 } |
| OLD | NEW |