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 1844 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1855 "process/process_util_unittest.cc", | 1855 "process/process_util_unittest.cc", |
1856 "profiler/stack_sampling_profiler_unittest.cc", | 1856 "profiler/stack_sampling_profiler_unittest.cc", |
1857 "profiler/tracked_time_unittest.cc", | 1857 "profiler/tracked_time_unittest.cc", |
1858 "rand_util_unittest.cc", | 1858 "rand_util_unittest.cc", |
1859 "run_loop_unittest.cc", | 1859 "run_loop_unittest.cc", |
1860 "scoped_clear_errno_unittest.cc", | 1860 "scoped_clear_errno_unittest.cc", |
1861 "scoped_generic_unittest.cc", | 1861 "scoped_generic_unittest.cc", |
1862 "scoped_native_library_unittest.cc", | 1862 "scoped_native_library_unittest.cc", |
1863 "security_unittest.cc", | 1863 "security_unittest.cc", |
1864 "sequence_checker_unittest.cc", | 1864 "sequence_checker_unittest.cc", |
| 1865 "sequenced_task_runner_unittest.cc", |
1865 "sha1_unittest.cc", | 1866 "sha1_unittest.cc", |
1866 "stl_util_unittest.cc", | 1867 "stl_util_unittest.cc", |
1867 "strings/nullable_string16_unittest.cc", | 1868 "strings/nullable_string16_unittest.cc", |
1868 "strings/pattern_unittest.cc", | 1869 "strings/pattern_unittest.cc", |
1869 "strings/safe_sprintf_unittest.cc", | 1870 "strings/safe_sprintf_unittest.cc", |
1870 "strings/string16_unittest.cc", | 1871 "strings/string16_unittest.cc", |
1871 "strings/string_number_conversions_unittest.cc", | 1872 "strings/string_number_conversions_unittest.cc", |
1872 "strings/string_piece_unittest.cc", | 1873 "strings/string_piece_unittest.cc", |
1873 "strings/string_split_unittest.cc", | 1874 "strings/string_split_unittest.cc", |
1874 "strings/string_tokenizer_unittest.cc", | 1875 "strings/string_tokenizer_unittest.cc", |
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2426 | 2427 |
2427 # GYP: //base.gyp:base_java_unittest_support | 2428 # GYP: //base.gyp:base_java_unittest_support |
2428 android_library("base_java_unittest_support") { | 2429 android_library("base_java_unittest_support") { |
2429 deps = [ | 2430 deps = [ |
2430 ":base_java", | 2431 ":base_java", |
2431 ] | 2432 ] |
2432 java_files = | 2433 java_files = |
2433 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2434 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2434 } | 2435 } |
2435 } | 2436 } |
OLD | NEW |