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

Side by Side Diff: base/BUILD.gn

Issue 2406203002: Use BCP47 compliant format for locale representation (Closed)
Patch Set: HashMap used and Error checking added 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 2333 matching lines...) Expand 10 before | Expand all | Expand 10 after
2344 ":base_java", 2344 ":base_java",
2345 ":base_java_test_support", 2345 ":base_java_test_support",
2346 ] 2346 ]
2347 java_files = [ 2347 java_files = [
2348 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java", 2348 "android/javatests/src/org/chromium/base/AdvancedMockContextTest.java",
2349 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java", 2349 "android/javatests/src/org/chromium/base/ApiCompatibilityUtilsTest.java",
2350 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java", 2350 "android/javatests/src/org/chromium/base/CommandLineInitUtilTest.java",
2351 "android/javatests/src/org/chromium/base/CommandLineTest.java", 2351 "android/javatests/src/org/chromium/base/CommandLineTest.java",
2352 "android/javatests/src/org/chromium/base/ObserverListTest.java", 2352 "android/javatests/src/org/chromium/base/ObserverListTest.java",
2353 "android/javatests/src/org/chromium/base/metrics/RecordHistogramTest.java" , 2353 "android/javatests/src/org/chromium/base/metrics/RecordHistogramTest.java" ,
2354 "android/javatests/src/org/chromium/base/LocaleUtilsTest.java",
ksk1 2016/10/17 11:21:15 Move to l. 2352 to be alphabetical order?
Yirui Huang 2016/10/17 13:42:27 Yes.
2354 ] 2355 ]
2355 } 2356 }
2356 2357
2357 android_library("base_java_test_support") { 2358 android_library("base_java_test_support") {
2358 testonly = true 2359 testonly = true
2359 deps = [ 2360 deps = [
2360 ":base_java", 2361 ":base_java",
2361 "//testing/android/reporter:reporter_java", 2362 "//testing/android/reporter:reporter_java",
2362 "//third_party/hamcrest:hamcrest_core_java", 2363 "//third_party/hamcrest:hamcrest_core_java",
2363 ] 2364 ]
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
2449 testonly = true 2450 testonly = true
2450 deps = [ 2451 deps = [
2451 ":base_java", 2452 ":base_java",
2452 ] 2453 ]
2453 java_files = [ 2454 java_files = [
2454 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2455 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2455 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2456 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2456 ] 2457 ]
2457 } 2458 }
2458 } 2459 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698