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

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: comments/add datafiles back Created 4 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/DEPS » ('j') | net/ftp/ftp_directory_listing_parser.cc » ('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 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after
1504 "i18n/base_i18n_switches.cc", 1504 "i18n/base_i18n_switches.cc",
1505 "i18n/base_i18n_switches.h", 1505 "i18n/base_i18n_switches.h",
1506 "i18n/bidi_line_iterator.cc", 1506 "i18n/bidi_line_iterator.cc",
1507 "i18n/bidi_line_iterator.h", 1507 "i18n/bidi_line_iterator.h",
1508 "i18n/break_iterator.cc", 1508 "i18n/break_iterator.cc",
1509 "i18n/break_iterator.h", 1509 "i18n/break_iterator.h",
1510 "i18n/case_conversion.cc", 1510 "i18n/case_conversion.cc",
1511 "i18n/case_conversion.h", 1511 "i18n/case_conversion.h",
1512 "i18n/char_iterator.cc", 1512 "i18n/char_iterator.cc",
1513 "i18n/char_iterator.h", 1513 "i18n/char_iterator.h",
1514 "i18n/encoding_detection.cc",
1515 "i18n/encoding_detection.h",
1514 "i18n/file_util_icu.cc", 1516 "i18n/file_util_icu.cc",
1515 "i18n/file_util_icu.h", 1517 "i18n/file_util_icu.h",
1516 "i18n/i18n_constants.cc", 1518 "i18n/i18n_constants.cc",
1517 "i18n/i18n_constants.h", 1519 "i18n/i18n_constants.h",
1518 "i18n/icu_encoding_detection.cc",
1519 "i18n/icu_encoding_detection.h",
1520 "i18n/icu_string_conversions.cc", 1520 "i18n/icu_string_conversions.cc",
1521 "i18n/icu_string_conversions.h", 1521 "i18n/icu_string_conversions.h",
1522 "i18n/icu_util.cc", 1522 "i18n/icu_util.cc",
1523 "i18n/icu_util.h", 1523 "i18n/icu_util.h",
1524 "i18n/message_formatter.cc", 1524 "i18n/message_formatter.cc",
1525 "i18n/message_formatter.h", 1525 "i18n/message_formatter.h",
1526 "i18n/number_formatting.cc", 1526 "i18n/number_formatting.cc",
1527 "i18n/number_formatting.h", 1527 "i18n/number_formatting.h",
1528 "i18n/rtl.cc", 1528 "i18n/rtl.cc",
1529 "i18n/rtl.h", 1529 "i18n/rtl.h",
1530 "i18n/streaming_utf8_validator.cc", 1530 "i18n/streaming_utf8_validator.cc",
1531 "i18n/streaming_utf8_validator.h", 1531 "i18n/streaming_utf8_validator.h",
1532 "i18n/string_compare.cc", 1532 "i18n/string_compare.cc",
1533 "i18n/string_compare.h", 1533 "i18n/string_compare.h",
1534 "i18n/string_search.cc", 1534 "i18n/string_search.cc",
1535 "i18n/string_search.h", 1535 "i18n/string_search.h",
1536 "i18n/time_formatting.cc", 1536 "i18n/time_formatting.cc",
1537 "i18n/time_formatting.h", 1537 "i18n/time_formatting.h",
1538 "i18n/timezone.cc", 1538 "i18n/timezone.cc",
1539 "i18n/timezone.h", 1539 "i18n/timezone.h",
1540 "i18n/utf8_validator_tables.cc", 1540 "i18n/utf8_validator_tables.cc",
1541 "i18n/utf8_validator_tables.h", 1541 "i18n/utf8_validator_tables.h",
1542 ] 1542 ]
1543 defines = [ "BASE_I18N_IMPLEMENTATION" ] 1543 defines = [ "BASE_I18N_IMPLEMENTATION" ]
1544 configs += [ "//build/config/compiler:wexit_time_destructors" ] 1544 configs += [ "//build/config/compiler:wexit_time_destructors" ]
1545 public_deps = [ 1545 public_deps = [
1546 "//third_party/ced",
1546 "//third_party/icu", 1547 "//third_party/icu",
1547 ] 1548 ]
1548 deps = [ 1549 deps = [
1549 ":base", 1550 ":base",
1550 "//base/third_party/dynamic_annotations", 1551 "//base/third_party/dynamic_annotations",
1551 ] 1552 ]
1552 1553
1553 if (!is_debug) { 1554 if (!is_debug) {
1554 configs -= [ "//build/config/compiler:default_optimization" ] 1555 configs -= [ "//build/config/compiler:default_optimization" ]
1555 configs += [ "//build/config/compiler:optimize_max" ] 1556 configs += [ "//build/config/compiler:optimize_max" ]
(...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
2450 2451
2451 # GYP: //base.gyp:base_java_unittest_support 2452 # GYP: //base.gyp:base_java_unittest_support
2452 android_library("base_java_unittest_support") { 2453 android_library("base_java_unittest_support") {
2453 deps = [ 2454 deps = [
2454 ":base_java", 2455 ":base_java",
2455 ] 2456 ]
2456 java_files = 2457 java_files =
2457 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2458 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2458 } 2459 }
2459 } 2460 }
OLDNEW
« no previous file with comments | « no previous file | base/DEPS » ('j') | net/ftp/ftp_directory_listing_parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698