OLD | NEW |
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 1876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1887 "profiler/stack_sampling_profiler_unittest.cc", | 1887 "profiler/stack_sampling_profiler_unittest.cc", |
1888 "profiler/tracked_time_unittest.cc", | 1888 "profiler/tracked_time_unittest.cc", |
1889 "rand_util_unittest.cc", | 1889 "rand_util_unittest.cc", |
1890 "run_loop_unittest.cc", | 1890 "run_loop_unittest.cc", |
1891 "scoped_clear_errno_unittest.cc", | 1891 "scoped_clear_errno_unittest.cc", |
1892 "scoped_generic_unittest.cc", | 1892 "scoped_generic_unittest.cc", |
1893 "scoped_native_library_unittest.cc", | 1893 "scoped_native_library_unittest.cc", |
1894 "security_unittest.cc", | 1894 "security_unittest.cc", |
1895 "sequence_checker_unittest.cc", | 1895 "sequence_checker_unittest.cc", |
1896 "sequence_token_unittest.cc", | 1896 "sequence_token_unittest.cc", |
| 1897 "sequenced_task_runner_unittest.cc", |
1897 "sha1_unittest.cc", | 1898 "sha1_unittest.cc", |
1898 "stl_util_unittest.cc", | 1899 "stl_util_unittest.cc", |
1899 "strings/nullable_string16_unittest.cc", | 1900 "strings/nullable_string16_unittest.cc", |
1900 "strings/pattern_unittest.cc", | 1901 "strings/pattern_unittest.cc", |
1901 "strings/safe_sprintf_unittest.cc", | 1902 "strings/safe_sprintf_unittest.cc", |
1902 "strings/string16_unittest.cc", | 1903 "strings/string16_unittest.cc", |
1903 "strings/string_number_conversions_unittest.cc", | 1904 "strings/string_number_conversions_unittest.cc", |
1904 "strings/string_piece_unittest.cc", | 1905 "strings/string_piece_unittest.cc", |
1905 "strings/string_split_unittest.cc", | 1906 "strings/string_split_unittest.cc", |
1906 "strings/string_tokenizer_unittest.cc", | 1907 "strings/string_tokenizer_unittest.cc", |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2457 | 2458 |
2458 # GYP: //base.gyp:base_java_unittest_support | 2459 # GYP: //base.gyp:base_java_unittest_support |
2459 android_library("base_java_unittest_support") { | 2460 android_library("base_java_unittest_support") { |
2460 deps = [ | 2461 deps = [ |
2461 ":base_java", | 2462 ":base_java", |
2462 ] | 2463 ] |
2463 java_files = | 2464 java_files = |
2464 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2465 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2465 } | 2466 } |
2466 } | 2467 } |
OLD | NEW |