| 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 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1768 "mac/objc_property_releaser_unittest.mm", | 1768 "mac/objc_property_releaser_unittest.mm", |
| 1769 "mac/scoped_nsobject_unittest.mm", | 1769 "mac/scoped_nsobject_unittest.mm", |
| 1770 "mac/scoped_objc_class_swizzler_unittest.mm", | 1770 "mac/scoped_objc_class_swizzler_unittest.mm", |
| 1771 "mac/scoped_sending_event_unittest.mm", | 1771 "mac/scoped_sending_event_unittest.mm", |
| 1772 "md5_unittest.cc", | 1772 "md5_unittest.cc", |
| 1773 "memory/aligned_memory_unittest.cc", | 1773 "memory/aligned_memory_unittest.cc", |
| 1774 "memory/discardable_shared_memory_unittest.cc", | 1774 "memory/discardable_shared_memory_unittest.cc", |
| 1775 "memory/linked_ptr_unittest.cc", | 1775 "memory/linked_ptr_unittest.cc", |
| 1776 "memory/memory_pressure_listener_unittest.cc", | 1776 "memory/memory_pressure_listener_unittest.cc", |
| 1777 "memory/memory_pressure_monitor_chromeos_unittest.cc", | 1777 "memory/memory_pressure_monitor_chromeos_unittest.cc", |
| 1778 "memory/memory_pressure_monitor_mac_unittest.cc", |
| 1778 "memory/memory_pressure_monitor_win_unittest.cc", | 1779 "memory/memory_pressure_monitor_win_unittest.cc", |
| 1779 "memory/ptr_util_unittest.cc", | 1780 "memory/ptr_util_unittest.cc", |
| 1780 "memory/ref_counted_memory_unittest.cc", | 1781 "memory/ref_counted_memory_unittest.cc", |
| 1781 "memory/ref_counted_unittest.cc", | 1782 "memory/ref_counted_unittest.cc", |
| 1782 "memory/scoped_vector_unittest.cc", | 1783 "memory/scoped_vector_unittest.cc", |
| 1783 "memory/shared_memory_mac_unittest.cc", | 1784 "memory/shared_memory_mac_unittest.cc", |
| 1784 "memory/shared_memory_unittest.cc", | 1785 "memory/shared_memory_unittest.cc", |
| 1785 "memory/shared_memory_win_unittest.cc", | 1786 "memory/shared_memory_win_unittest.cc", |
| 1786 "memory/singleton_unittest.cc", | 1787 "memory/singleton_unittest.cc", |
| 1787 "memory/weak_ptr_unittest.cc", | 1788 "memory/weak_ptr_unittest.cc", |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2372 | 2373 |
| 2373 # GYP: //base.gyp:base_java_unittest_support | 2374 # GYP: //base.gyp:base_java_unittest_support |
| 2374 android_library("base_java_unittest_support") { | 2375 android_library("base_java_unittest_support") { |
| 2375 deps = [ | 2376 deps = [ |
| 2376 ":base_java", | 2377 ":base_java", |
| 2377 ] | 2378 ] |
| 2378 java_files = | 2379 java_files = |
| 2379 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2380 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2380 } | 2381 } |
| 2381 } | 2382 } |
| OLD | NEW |