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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 "rand_util.h", | 671 "rand_util.h", |
672 "rand_util_nacl.cc", | 672 "rand_util_nacl.cc", |
673 "rand_util_posix.cc", | 673 "rand_util_posix.cc", |
674 "rand_util_win.cc", | 674 "rand_util_win.cc", |
675 "run_loop.cc", | 675 "run_loop.cc", |
676 "run_loop.h", | 676 "run_loop.h", |
677 "scoped_generic.h", | 677 "scoped_generic.h", |
678 "scoped_native_library.cc", | 678 "scoped_native_library.cc", |
679 "scoped_native_library.h", | 679 "scoped_native_library.h", |
680 "scoped_observer.h", | 680 "scoped_observer.h", |
| 681 "sequence_and_task_token.cc", |
| 682 "sequence_and_task_token.h", |
681 "sequence_checker.h", | 683 "sequence_checker.h", |
682 "sequence_checker_impl.cc", | 684 "sequence_checker_impl.cc", |
683 "sequence_checker_impl.h", | 685 "sequence_checker_impl.h", |
684 "sequence_token.cc", | |
685 "sequence_token.h", | |
686 "sequenced_task_runner.cc", | 686 "sequenced_task_runner.cc", |
687 "sequenced_task_runner.h", | 687 "sequenced_task_runner.h", |
688 "sequenced_task_runner_helpers.h", | 688 "sequenced_task_runner_helpers.h", |
689 "sha1.cc", | 689 "sha1.cc", |
690 "sha1.h", | 690 "sha1.h", |
691 "single_thread_task_runner.h", | 691 "single_thread_task_runner.h", |
692 "stl_util.h", | 692 "stl_util.h", |
693 "strings/latin1_string_conversions.cc", | 693 "strings/latin1_string_conversions.cc", |
694 "strings/latin1_string_conversions.h", | 694 "strings/latin1_string_conversions.h", |
695 "strings/nullable_string16.cc", | 695 "strings/nullable_string16.cc", |
(...skipping 1172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1868 "process/process_unittest.cc", | 1868 "process/process_unittest.cc", |
1869 "process/process_util_unittest.cc", | 1869 "process/process_util_unittest.cc", |
1870 "profiler/stack_sampling_profiler_unittest.cc", | 1870 "profiler/stack_sampling_profiler_unittest.cc", |
1871 "profiler/tracked_time_unittest.cc", | 1871 "profiler/tracked_time_unittest.cc", |
1872 "rand_util_unittest.cc", | 1872 "rand_util_unittest.cc", |
1873 "run_loop_unittest.cc", | 1873 "run_loop_unittest.cc", |
1874 "scoped_clear_errno_unittest.cc", | 1874 "scoped_clear_errno_unittest.cc", |
1875 "scoped_generic_unittest.cc", | 1875 "scoped_generic_unittest.cc", |
1876 "scoped_native_library_unittest.cc", | 1876 "scoped_native_library_unittest.cc", |
1877 "security_unittest.cc", | 1877 "security_unittest.cc", |
| 1878 "sequence_and_task_token_unittest.cc", |
1878 "sequence_checker_unittest.cc", | 1879 "sequence_checker_unittest.cc", |
1879 "sequence_token_unittest.cc", | |
1880 "sha1_unittest.cc", | 1880 "sha1_unittest.cc", |
1881 "stl_util_unittest.cc", | 1881 "stl_util_unittest.cc", |
1882 "strings/nullable_string16_unittest.cc", | 1882 "strings/nullable_string16_unittest.cc", |
1883 "strings/pattern_unittest.cc", | 1883 "strings/pattern_unittest.cc", |
1884 "strings/safe_sprintf_unittest.cc", | 1884 "strings/safe_sprintf_unittest.cc", |
1885 "strings/string16_unittest.cc", | 1885 "strings/string16_unittest.cc", |
1886 "strings/string_number_conversions_unittest.cc", | 1886 "strings/string_number_conversions_unittest.cc", |
1887 "strings/string_piece_unittest.cc", | 1887 "strings/string_piece_unittest.cc", |
1888 "strings/string_split_unittest.cc", | 1888 "strings/string_split_unittest.cc", |
1889 "strings/string_tokenizer_unittest.cc", | 1889 "strings/string_tokenizer_unittest.cc", |
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2444 | 2444 |
2445 # GYP: //base.gyp:base_java_unittest_support | 2445 # GYP: //base.gyp:base_java_unittest_support |
2446 android_library("base_java_unittest_support") { | 2446 android_library("base_java_unittest_support") { |
2447 deps = [ | 2447 deps = [ |
2448 ":base_java", | 2448 ":base_java", |
2449 ] | 2449 ] |
2450 java_files = | 2450 java_files = |
2451 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2451 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2452 } | 2452 } |
2453 } | 2453 } |
OLD | NEW |