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

Side by Side Diff: base/BUILD.gn

Issue 1140153005: ICU msg format support with more than one arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mark's review comments Created 5 years, 4 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
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 "i18n/file_util_icu.cc", 959 "i18n/file_util_icu.cc",
960 "i18n/file_util_icu.h", 960 "i18n/file_util_icu.h",
961 "i18n/i18n_constants.cc", 961 "i18n/i18n_constants.cc",
962 "i18n/i18n_constants.h", 962 "i18n/i18n_constants.h",
963 "i18n/icu_encoding_detection.cc", 963 "i18n/icu_encoding_detection.cc",
964 "i18n/icu_encoding_detection.h", 964 "i18n/icu_encoding_detection.h",
965 "i18n/icu_string_conversions.cc", 965 "i18n/icu_string_conversions.cc",
966 "i18n/icu_string_conversions.h", 966 "i18n/icu_string_conversions.h",
967 "i18n/icu_util.cc", 967 "i18n/icu_util.cc",
968 "i18n/icu_util.h", 968 "i18n/icu_util.h",
969 "i18n/message_formatter.cc",
970 "i18n/message_formatter.h",
969 "i18n/number_formatting.cc", 971 "i18n/number_formatting.cc",
970 "i18n/number_formatting.h", 972 "i18n/number_formatting.h",
971 "i18n/rtl.cc", 973 "i18n/rtl.cc",
972 "i18n/rtl.h", 974 "i18n/rtl.h",
973 "i18n/streaming_utf8_validator.cc", 975 "i18n/streaming_utf8_validator.cc",
974 "i18n/streaming_utf8_validator.h", 976 "i18n/streaming_utf8_validator.h",
975 "i18n/string_compare.cc", 977 "i18n/string_compare.cc",
976 "i18n/string_compare.h", 978 "i18n/string_compare.h",
977 "i18n/string_search.cc", 979 "i18n/string_search.cc",
978 "i18n/string_search.h", 980 "i18n/string_search.h",
979 "i18n/time_formatting.cc", 981 "i18n/time_formatting.cc",
980 "i18n/time_formatting.h", 982 "i18n/time_formatting.h",
981 "i18n/timezone.cc", 983 "i18n/timezone.cc",
982 "i18n/timezone.h", 984 "i18n/timezone.h",
983 "i18n/utf8_validator_tables.cc", 985 "i18n/utf8_validator_tables.cc",
984 "i18n/utf8_validator_tables.h", 986 "i18n/utf8_validator_tables.h",
985 ] 987 ]
986 defines = [ "BASE_I18N_IMPLEMENTATION" ] 988 defines = [ "BASE_I18N_IMPLEMENTATION" ]
987 configs += [ "//build/config/compiler:wexit_time_destructors" ] 989 configs += [ "//build/config/compiler:wexit_time_destructors" ]
990 public_deps = [
991 "//third_party/icu",
992 ]
988 deps = [ 993 deps = [
989 ":base", 994 ":base",
990 "//base/third_party/dynamic_annotations", 995 "//base/third_party/dynamic_annotations",
991 "//third_party/icu",
992 ] 996 ]
993 997
994 if (!is_debug) { 998 if (!is_debug) {
995 configs -= [ "//build/config/compiler:optimize" ] 999 configs -= [ "//build/config/compiler:optimize" ]
996 configs += [ "//build/config/compiler:optimize_max" ] 1000 configs += [ "//build/config/compiler:optimize_max" ]
997 } 1001 }
998 1002
999 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1003 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1000 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 1004 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1001 } 1005 }
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 "files/important_file_writer_unittest.cc", 1233 "files/important_file_writer_unittest.cc",
1230 "files/scoped_temp_dir_unittest.cc", 1234 "files/scoped_temp_dir_unittest.cc",
1231 "gmock_unittest.cc", 1235 "gmock_unittest.cc",
1232 "guid_unittest.cc", 1236 "guid_unittest.cc",
1233 "hash_unittest.cc", 1237 "hash_unittest.cc",
1234 "i18n/break_iterator_unittest.cc", 1238 "i18n/break_iterator_unittest.cc",
1235 "i18n/case_conversion_unittest.cc", 1239 "i18n/case_conversion_unittest.cc",
1236 "i18n/char_iterator_unittest.cc", 1240 "i18n/char_iterator_unittest.cc",
1237 "i18n/file_util_icu_unittest.cc", 1241 "i18n/file_util_icu_unittest.cc",
1238 "i18n/icu_string_conversions_unittest.cc", 1242 "i18n/icu_string_conversions_unittest.cc",
1243 "i18n/message_formatter_unittest.cc",
1239 "i18n/number_formatting_unittest.cc", 1244 "i18n/number_formatting_unittest.cc",
1240 "i18n/rtl_unittest.cc", 1245 "i18n/rtl_unittest.cc",
1241 "i18n/streaming_utf8_validator_unittest.cc", 1246 "i18n/streaming_utf8_validator_unittest.cc",
1242 "i18n/string_search_unittest.cc", 1247 "i18n/string_search_unittest.cc",
1243 "i18n/time_formatting_unittest.cc", 1248 "i18n/time_formatting_unittest.cc",
1244 "i18n/timezone_unittest.cc", 1249 "i18n/timezone_unittest.cc",
1245 "id_map_unittest.cc", 1250 "id_map_unittest.cc",
1246 "ios/device_util_unittest.mm", 1251 "ios/device_util_unittest.mm",
1247 "ios/weak_nsobject_unittest.mm", 1252 "ios/weak_nsobject_unittest.mm",
1248 "json/json_parser_unittest.cc", 1253 "json/json_parser_unittest.cc",
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1624 1629
1625 # GYP: //base.gyp:base_java_unittest_support 1630 # GYP: //base.gyp:base_java_unittest_support
1626 android_library("base_java_unittest_support") { 1631 android_library("base_java_unittest_support") {
1627 deps = [ 1632 deps = [
1628 ":base_java", 1633 ":base_java",
1629 ] 1634 ]
1630 java_files = 1635 java_files =
1631 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1636 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1632 } 1637 }
1633 } 1638 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698