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

Side by Side Diff: base/BUILD.gn

Issue 2168003003: Replace ICU encoding detection with CED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: temorarily reverted test files Created 4 years, 5 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/DEPS » ('j') | base/i18n/encoding_detection.h » ('J')
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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after
1490 "i18n/base_i18n_switches.cc", 1490 "i18n/base_i18n_switches.cc",
1491 "i18n/base_i18n_switches.h", 1491 "i18n/base_i18n_switches.h",
1492 "i18n/bidi_line_iterator.cc", 1492 "i18n/bidi_line_iterator.cc",
1493 "i18n/bidi_line_iterator.h", 1493 "i18n/bidi_line_iterator.h",
1494 "i18n/break_iterator.cc", 1494 "i18n/break_iterator.cc",
1495 "i18n/break_iterator.h", 1495 "i18n/break_iterator.h",
1496 "i18n/case_conversion.cc", 1496 "i18n/case_conversion.cc",
1497 "i18n/case_conversion.h", 1497 "i18n/case_conversion.h",
1498 "i18n/char_iterator.cc", 1498 "i18n/char_iterator.cc",
1499 "i18n/char_iterator.h", 1499 "i18n/char_iterator.h",
1500 "i18n/encoding_detection.cc",
1501 "i18n/encoding_detection.h",
1500 "i18n/file_util_icu.cc", 1502 "i18n/file_util_icu.cc",
1501 "i18n/file_util_icu.h", 1503 "i18n/file_util_icu.h",
1502 "i18n/i18n_constants.cc", 1504 "i18n/i18n_constants.cc",
1503 "i18n/i18n_constants.h", 1505 "i18n/i18n_constants.h",
1504 "i18n/icu_encoding_detection.cc",
1505 "i18n/icu_encoding_detection.h",
1506 "i18n/icu_string_conversions.cc", 1506 "i18n/icu_string_conversions.cc",
1507 "i18n/icu_string_conversions.h", 1507 "i18n/icu_string_conversions.h",
1508 "i18n/icu_util.cc", 1508 "i18n/icu_util.cc",
1509 "i18n/icu_util.h", 1509 "i18n/icu_util.h",
1510 "i18n/message_formatter.cc", 1510 "i18n/message_formatter.cc",
1511 "i18n/message_formatter.h", 1511 "i18n/message_formatter.h",
1512 "i18n/number_formatting.cc", 1512 "i18n/number_formatting.cc",
1513 "i18n/number_formatting.h", 1513 "i18n/number_formatting.h",
1514 "i18n/rtl.cc", 1514 "i18n/rtl.cc",
1515 "i18n/rtl.h", 1515 "i18n/rtl.h",
1516 "i18n/streaming_utf8_validator.cc", 1516 "i18n/streaming_utf8_validator.cc",
1517 "i18n/streaming_utf8_validator.h", 1517 "i18n/streaming_utf8_validator.h",
1518 "i18n/string_compare.cc", 1518 "i18n/string_compare.cc",
1519 "i18n/string_compare.h", 1519 "i18n/string_compare.h",
1520 "i18n/string_search.cc", 1520 "i18n/string_search.cc",
1521 "i18n/string_search.h", 1521 "i18n/string_search.h",
1522 "i18n/time_formatting.cc", 1522 "i18n/time_formatting.cc",
1523 "i18n/time_formatting.h", 1523 "i18n/time_formatting.h",
1524 "i18n/timezone.cc", 1524 "i18n/timezone.cc",
1525 "i18n/timezone.h", 1525 "i18n/timezone.h",
1526 "i18n/utf8_validator_tables.cc", 1526 "i18n/utf8_validator_tables.cc",
1527 "i18n/utf8_validator_tables.h", 1527 "i18n/utf8_validator_tables.h",
1528 ] 1528 ]
1529 defines = [ "BASE_I18N_IMPLEMENTATION" ] 1529 defines = [ "BASE_I18N_IMPLEMENTATION" ]
1530 configs += [ "//build/config/compiler:wexit_time_destructors" ] 1530 configs += [ "//build/config/compiler:wexit_time_destructors" ]
1531 public_deps = [ 1531 public_deps = [
1532 "//third_party/ced",
1532 "//third_party/icu", 1533 "//third_party/icu",
1533 ] 1534 ]
1534 deps = [ 1535 deps = [
1535 ":base", 1536 ":base",
1536 "//base/third_party/dynamic_annotations", 1537 "//base/third_party/dynamic_annotations",
1537 ] 1538 ]
1538 1539
1539 if (!is_debug) { 1540 if (!is_debug) {
1540 configs -= [ "//build/config/compiler:default_optimization" ] 1541 configs -= [ "//build/config/compiler:default_optimization" ]
1541 configs += [ "//build/config/compiler:optimize_max" ] 1542 configs += [ "//build/config/compiler:optimize_max" ]
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
2432 2433
2433 # GYP: //base.gyp:base_java_unittest_support 2434 # GYP: //base.gyp:base_java_unittest_support
2434 android_library("base_java_unittest_support") { 2435 android_library("base_java_unittest_support") {
2435 deps = [ 2436 deps = [
2436 ":base_java", 2437 ":base_java",
2437 ] 2438 ]
2438 java_files = 2439 java_files =
2439 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2440 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2440 } 2441 }
2441 } 2442 }
OLDNEW
« no previous file with comments | « no previous file | base/DEPS » ('j') | base/i18n/encoding_detection.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698