| 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 1675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1686 "android/path_utils_unittest.cc", | 1686 "android/path_utils_unittest.cc", |
| 1687 "android/scoped_java_ref_unittest.cc", | 1687 "android/scoped_java_ref_unittest.cc", |
| 1688 "android/sys_utils_unittest.cc", | 1688 "android/sys_utils_unittest.cc", |
| 1689 "at_exit_unittest.cc", | 1689 "at_exit_unittest.cc", |
| 1690 "atomicops_unittest.cc", | 1690 "atomicops_unittest.cc", |
| 1691 "barrier_closure_unittest.cc", | 1691 "barrier_closure_unittest.cc", |
| 1692 "base64_unittest.cc", | 1692 "base64_unittest.cc", |
| 1693 "base64url_unittest.cc", | 1693 "base64url_unittest.cc", |
| 1694 "big_endian_unittest.cc", | 1694 "big_endian_unittest.cc", |
| 1695 "bind_unittest.cc", | 1695 "bind_unittest.cc", |
| 1696 "bit_cast_unittest.cc", |
| 1696 "bits_unittest.cc", | 1697 "bits_unittest.cc", |
| 1697 "build_time_unittest.cc", | 1698 "build_time_unittest.cc", |
| 1698 "callback_helpers_unittest.cc", | 1699 "callback_helpers_unittest.cc", |
| 1699 "callback_list_unittest.cc", | 1700 "callback_list_unittest.cc", |
| 1700 "callback_unittest.cc", | 1701 "callback_unittest.cc", |
| 1701 "cancelable_callback_unittest.cc", | 1702 "cancelable_callback_unittest.cc", |
| 1702 "command_line_unittest.cc", | 1703 "command_line_unittest.cc", |
| 1703 "containers/adapters_unittest.cc", | 1704 "containers/adapters_unittest.cc", |
| 1704 "containers/hash_tables_unittest.cc", | 1705 "containers/hash_tables_unittest.cc", |
| 1705 "containers/linked_list_unittest.cc", | 1706 "containers/linked_list_unittest.cc", |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2362 | 2363 |
| 2363 # GYP: //base.gyp:base_java_unittest_support | 2364 # GYP: //base.gyp:base_java_unittest_support |
| 2364 android_library("base_java_unittest_support") { | 2365 android_library("base_java_unittest_support") { |
| 2365 deps = [ | 2366 deps = [ |
| 2366 ":base_java", | 2367 ":base_java", |
| 2367 ] | 2368 ] |
| 2368 java_files = | 2369 java_files = |
| 2369 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2370 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2370 } | 2371 } |
| 2371 } | 2372 } |
| OLD | NEW |