| 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 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1740 "android/library_loader/library_prefetcher_unittest.cc", | 1740 "android/library_loader/library_prefetcher_unittest.cc", |
| 1741 "android/path_utils_unittest.cc", | 1741 "android/path_utils_unittest.cc", |
| 1742 "android/scoped_java_ref_unittest.cc", | 1742 "android/scoped_java_ref_unittest.cc", |
| 1743 "android/sys_utils_unittest.cc", | 1743 "android/sys_utils_unittest.cc", |
| 1744 "at_exit_unittest.cc", | 1744 "at_exit_unittest.cc", |
| 1745 "atomicops_unittest.cc", | 1745 "atomicops_unittest.cc", |
| 1746 "barrier_closure_unittest.cc", | 1746 "barrier_closure_unittest.cc", |
| 1747 "base64_unittest.cc", | 1747 "base64_unittest.cc", |
| 1748 "base64url_unittest.cc", | 1748 "base64url_unittest.cc", |
| 1749 "big_endian_unittest.cc", | 1749 "big_endian_unittest.cc", |
| 1750 "bind_helpers_unittest.cc", |
| 1750 "bind_unittest.cc", | 1751 "bind_unittest.cc", |
| 1751 "bit_cast_unittest.cc", | 1752 "bit_cast_unittest.cc", |
| 1752 "bits_unittest.cc", | 1753 "bits_unittest.cc", |
| 1753 "build_time_unittest.cc", | 1754 "build_time_unittest.cc", |
| 1754 "callback_helpers_unittest.cc", | 1755 "callback_helpers_unittest.cc", |
| 1755 "callback_list_unittest.cc", | 1756 "callback_list_unittest.cc", |
| 1756 "callback_unittest.cc", | 1757 "callback_unittest.cc", |
| 1757 "cancelable_callback_unittest.cc", | 1758 "cancelable_callback_unittest.cc", |
| 1758 "command_line_unittest.cc", | 1759 "command_line_unittest.cc", |
| 1759 "containers/adapters_unittest.cc", | 1760 "containers/adapters_unittest.cc", |
| (...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2440 android_library("base_java_unittest_support") { | 2441 android_library("base_java_unittest_support") { |
| 2441 deps = [ | 2442 deps = [ |
| 2442 ":base_java", | 2443 ":base_java", |
| 2443 ] | 2444 ] |
| 2444 java_files = [ | 2445 java_files = [ |
| 2445 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2446 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2446 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2447 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2447 ] | 2448 ] |
| 2448 } | 2449 } |
| 2449 } | 2450 } |
| OLD | NEW |