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 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 "rand_util_win.cc", | 673 "rand_util_win.cc", |
674 "run_loop.cc", | 674 "run_loop.cc", |
675 "run_loop.h", | 675 "run_loop.h", |
676 "scoped_generic.h", | 676 "scoped_generic.h", |
677 "scoped_native_library.cc", | 677 "scoped_native_library.cc", |
678 "scoped_native_library.h", | 678 "scoped_native_library.h", |
679 "scoped_observer.h", | 679 "scoped_observer.h", |
680 "sequence_checker.h", | 680 "sequence_checker.h", |
681 "sequence_checker_impl.cc", | 681 "sequence_checker_impl.cc", |
682 "sequence_checker_impl.h", | 682 "sequence_checker_impl.h", |
| 683 "sequence_token.cc", |
| 684 "sequence_token.h", |
683 "sequenced_task_runner.cc", | 685 "sequenced_task_runner.cc", |
684 "sequenced_task_runner.h", | 686 "sequenced_task_runner.h", |
685 "sequenced_task_runner_helpers.h", | 687 "sequenced_task_runner_helpers.h", |
686 "sha1.cc", | 688 "sha1.cc", |
687 "sha1.h", | 689 "sha1.h", |
688 "single_thread_task_runner.h", | 690 "single_thread_task_runner.h", |
689 "stl_util.h", | 691 "stl_util.h", |
690 "strings/latin1_string_conversions.cc", | 692 "strings/latin1_string_conversions.cc", |
691 "strings/latin1_string_conversions.h", | 693 "strings/latin1_string_conversions.h", |
692 "strings/nullable_string16.cc", | 694 "strings/nullable_string16.cc", |
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1859 "process/process_util_unittest.cc", | 1861 "process/process_util_unittest.cc", |
1860 "profiler/stack_sampling_profiler_unittest.cc", | 1862 "profiler/stack_sampling_profiler_unittest.cc", |
1861 "profiler/tracked_time_unittest.cc", | 1863 "profiler/tracked_time_unittest.cc", |
1862 "rand_util_unittest.cc", | 1864 "rand_util_unittest.cc", |
1863 "run_loop_unittest.cc", | 1865 "run_loop_unittest.cc", |
1864 "scoped_clear_errno_unittest.cc", | 1866 "scoped_clear_errno_unittest.cc", |
1865 "scoped_generic_unittest.cc", | 1867 "scoped_generic_unittest.cc", |
1866 "scoped_native_library_unittest.cc", | 1868 "scoped_native_library_unittest.cc", |
1867 "security_unittest.cc", | 1869 "security_unittest.cc", |
1868 "sequence_checker_unittest.cc", | 1870 "sequence_checker_unittest.cc", |
| 1871 "sequence_token_unittest.cc", |
1869 "sha1_unittest.cc", | 1872 "sha1_unittest.cc", |
1870 "stl_util_unittest.cc", | 1873 "stl_util_unittest.cc", |
1871 "strings/nullable_string16_unittest.cc", | 1874 "strings/nullable_string16_unittest.cc", |
1872 "strings/pattern_unittest.cc", | 1875 "strings/pattern_unittest.cc", |
1873 "strings/safe_sprintf_unittest.cc", | 1876 "strings/safe_sprintf_unittest.cc", |
1874 "strings/string16_unittest.cc", | 1877 "strings/string16_unittest.cc", |
1875 "strings/string_number_conversions_unittest.cc", | 1878 "strings/string_number_conversions_unittest.cc", |
1876 "strings/string_piece_unittest.cc", | 1879 "strings/string_piece_unittest.cc", |
1877 "strings/string_split_unittest.cc", | 1880 "strings/string_split_unittest.cc", |
1878 "strings/string_tokenizer_unittest.cc", | 1881 "strings/string_tokenizer_unittest.cc", |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2432 | 2435 |
2433 # GYP: //base.gyp:base_java_unittest_support | 2436 # GYP: //base.gyp:base_java_unittest_support |
2434 android_library("base_java_unittest_support") { | 2437 android_library("base_java_unittest_support") { |
2435 deps = [ | 2438 deps = [ |
2436 ":base_java", | 2439 ":base_java", |
2437 ] | 2440 ] |
2438 java_files = | 2441 java_files = |
2439 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2442 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2440 } | 2443 } |
2441 } | 2444 } |
OLD | NEW |