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

Side by Side Diff: base/BUILD.gn

Issue 2406203002: Use BCP47 compliant format for locale representation (Closed)
Patch Set: add more explanations about why Locale.getLanguage/toLanguageTag is not used Created 4 years, 2 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
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 2330 matching lines...) Expand 10 before | Expand all | Expand 10 after
2341 testonly = true 2341 testonly = true
2342 deps = [ 2342 deps = [
2343 ":base_java", 2343 ":base_java",
2344 ":base_java_test_support", 2344 ":base_java_test_support",
2345 ] 2345 ]
2346 java_files = [ 2346 java_files = [
2347 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java", 2347 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java",
2348 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java", 2348 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java",
2349 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java", 2349 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java",
2350 "android/javatests/src/org/chromium/base/CommandLineTest.java", 2350 "android/javatests/src/org/chromium/base/CommandLineTest.java",
2351 "android/javatests/src/org/chromium/base/LocaleUtilsTest.java",
2351 "android/javatests/src/org/chromium/base/ObserverListTest.java", 2352 "android/javatests/src/org/chromium/base/ObserverListTest.java",
2352 "android/javatests/src/org/chromium/base/metrics/RecordHistogramTest.java" , 2353 "android/javatests/src/org/chromium/base/metrics/RecordHistogramTest.java" ,
2353 ] 2354 ]
2354 } 2355 }
2355 2356
2356 android_library("base_java_test_support") { 2357 android_library("base_java_test_support") {
2357 testonly = true 2358 testonly = true
2358 deps = [ 2359 deps = [
2359 ":base_java", 2360 ":base_java",
2360 "//testing/android/reporter:reporter_java", 2361 "//testing/android/reporter:reporter_java",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
2448 testonly = true 2449 testonly = true
2449 deps = [ 2450 deps = [
2450 ":base_java", 2451 ":base_java",
2451 ] 2452 ]
2452 java_files = [ 2453 java_files = [
2453 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2454 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2454 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2455 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2455 ] 2456 ]
2456 } 2457 }
2457 } 2458 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698