| 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 1699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1710 "mac/scoped_sending_event_unittest.mm", | 1710 "mac/scoped_sending_event_unittest.mm", |
| 1711 "md5_unittest.cc", | 1711 "md5_unittest.cc", |
| 1712 "memory/aligned_memory_unittest.cc", | 1712 "memory/aligned_memory_unittest.cc", |
| 1713 "memory/discardable_shared_memory_unittest.cc", | 1713 "memory/discardable_shared_memory_unittest.cc", |
| 1714 "memory/linked_ptr_unittest.cc", | 1714 "memory/linked_ptr_unittest.cc", |
| 1715 "memory/memory_pressure_monitor_chromeos_unittest.cc", | 1715 "memory/memory_pressure_monitor_chromeos_unittest.cc", |
| 1716 "memory/memory_pressure_monitor_win_unittest.cc", | 1716 "memory/memory_pressure_monitor_win_unittest.cc", |
| 1717 "memory/ptr_util_unittest.cc", | 1717 "memory/ptr_util_unittest.cc", |
| 1718 "memory/ref_counted_memory_unittest.cc", | 1718 "memory/ref_counted_memory_unittest.cc", |
| 1719 "memory/ref_counted_unittest.cc", | 1719 "memory/ref_counted_unittest.cc", |
| 1720 "memory/scoped_ptr_unittest.cc", | |
| 1721 "memory/scoped_vector_unittest.cc", | 1720 "memory/scoped_vector_unittest.cc", |
| 1722 "memory/shared_memory_mac_unittest.cc", | 1721 "memory/shared_memory_mac_unittest.cc", |
| 1723 "memory/shared_memory_unittest.cc", | 1722 "memory/shared_memory_unittest.cc", |
| 1724 "memory/shared_memory_win_unittest.cc", | 1723 "memory/shared_memory_win_unittest.cc", |
| 1725 "memory/singleton_unittest.cc", | 1724 "memory/singleton_unittest.cc", |
| 1726 "memory/weak_ptr_unittest.cc", | 1725 "memory/weak_ptr_unittest.cc", |
| 1727 "message_loop/message_loop_task_runner_unittest.cc", | 1726 "message_loop/message_loop_task_runner_unittest.cc", |
| 1728 "message_loop/message_loop_unittest.cc", | 1727 "message_loop/message_loop_unittest.cc", |
| 1729 "message_loop/message_pump_glib_unittest.cc", | 1728 "message_loop/message_pump_glib_unittest.cc", |
| 1730 "message_loop/message_pump_io_ios_unittest.cc", | 1729 "message_loop/message_pump_io_ios_unittest.cc", |
| (...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2183 | 2182 |
| 2184 # GYP: //base.gyp:base_java_unittest_support | 2183 # GYP: //base.gyp:base_java_unittest_support |
| 2185 android_library("base_java_unittest_support") { | 2184 android_library("base_java_unittest_support") { |
| 2186 deps = [ | 2185 deps = [ |
| 2187 ":base_java", | 2186 ":base_java", |
| 2188 ] | 2187 ] |
| 2189 java_files = | 2188 java_files = |
| 2190 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2189 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2191 } | 2190 } |
| 2192 } | 2191 } |
| OLD | NEW |