| 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 1737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1748 "android/library_loader/library_prefetcher_unittest.cc", | 1748 "android/library_loader/library_prefetcher_unittest.cc", |
| 1749 "android/path_utils_unittest.cc", | 1749 "android/path_utils_unittest.cc", |
| 1750 "android/scoped_java_ref_unittest.cc", | 1750 "android/scoped_java_ref_unittest.cc", |
| 1751 "android/sys_utils_unittest.cc", | 1751 "android/sys_utils_unittest.cc", |
| 1752 "at_exit_unittest.cc", | 1752 "at_exit_unittest.cc", |
| 1753 "atomicops_unittest.cc", | 1753 "atomicops_unittest.cc", |
| 1754 "barrier_closure_unittest.cc", | 1754 "barrier_closure_unittest.cc", |
| 1755 "base64_unittest.cc", | 1755 "base64_unittest.cc", |
| 1756 "base64url_unittest.cc", | 1756 "base64url_unittest.cc", |
| 1757 "big_endian_unittest.cc", | 1757 "big_endian_unittest.cc", |
| 1758 "bind_helpers_unittest.cc", |
| 1758 "bind_unittest.cc", | 1759 "bind_unittest.cc", |
| 1759 "bit_cast_unittest.cc", | 1760 "bit_cast_unittest.cc", |
| 1760 "bits_unittest.cc", | 1761 "bits_unittest.cc", |
| 1761 "build_time_unittest.cc", | 1762 "build_time_unittest.cc", |
| 1762 "callback_helpers_unittest.cc", | 1763 "callback_helpers_unittest.cc", |
| 1763 "callback_list_unittest.cc", | 1764 "callback_list_unittest.cc", |
| 1764 "callback_unittest.cc", | 1765 "callback_unittest.cc", |
| 1765 "cancelable_callback_unittest.cc", | 1766 "cancelable_callback_unittest.cc", |
| 1766 "command_line_unittest.cc", | 1767 "command_line_unittest.cc", |
| 1767 "containers/adapters_unittest.cc", | 1768 "containers/adapters_unittest.cc", |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2456 | 2457 |
| 2457 # GYP: //base.gyp:base_java_unittest_support | 2458 # GYP: //base.gyp:base_java_unittest_support |
| 2458 android_library("base_java_unittest_support") { | 2459 android_library("base_java_unittest_support") { |
| 2459 deps = [ | 2460 deps = [ |
| 2460 ":base_java", | 2461 ":base_java", |
| 2461 ] | 2462 ] |
| 2462 java_files = | 2463 java_files = |
| 2463 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2464 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2464 } | 2465 } |
| 2465 } | 2466 } |
| OLD | NEW |