| 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 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1633 "memory/linked_ptr_unittest.cc", | 1633 "memory/linked_ptr_unittest.cc", |
| 1634 "memory/memory_pressure_monitor_chromeos_unittest.cc", | 1634 "memory/memory_pressure_monitor_chromeos_unittest.cc", |
| 1635 "memory/memory_pressure_monitor_win_unittest.cc", | 1635 "memory/memory_pressure_monitor_win_unittest.cc", |
| 1636 "memory/ptr_util_unittest.cc", | 1636 "memory/ptr_util_unittest.cc", |
| 1637 "memory/ref_counted_memory_unittest.cc", | 1637 "memory/ref_counted_memory_unittest.cc", |
| 1638 "memory/ref_counted_unittest.cc", | 1638 "memory/ref_counted_unittest.cc", |
| 1639 "memory/scoped_ptr_unittest.cc", | 1639 "memory/scoped_ptr_unittest.cc", |
| 1640 "memory/scoped_vector_unittest.cc", | 1640 "memory/scoped_vector_unittest.cc", |
| 1641 "memory/shared_memory_mac_unittest.cc", | 1641 "memory/shared_memory_mac_unittest.cc", |
| 1642 "memory/shared_memory_unittest.cc", | 1642 "memory/shared_memory_unittest.cc", |
| 1643 "memory/shared_memory_win_unittest.cc", |
| 1643 "memory/singleton_unittest.cc", | 1644 "memory/singleton_unittest.cc", |
| 1644 "memory/weak_ptr_unittest.cc", | 1645 "memory/weak_ptr_unittest.cc", |
| 1645 "message_loop/message_loop_task_runner_unittest.cc", | 1646 "message_loop/message_loop_task_runner_unittest.cc", |
| 1646 "message_loop/message_loop_unittest.cc", | 1647 "message_loop/message_loop_unittest.cc", |
| 1647 "message_loop/message_pump_glib_unittest.cc", | 1648 "message_loop/message_pump_glib_unittest.cc", |
| 1648 "message_loop/message_pump_io_ios_unittest.cc", | 1649 "message_loop/message_pump_io_ios_unittest.cc", |
| 1649 "metrics/bucket_ranges_unittest.cc", | 1650 "metrics/bucket_ranges_unittest.cc", |
| 1650 "metrics/field_trial_unittest.cc", | 1651 "metrics/field_trial_unittest.cc", |
| 1651 "metrics/histogram_base_unittest.cc", | 1652 "metrics/histogram_base_unittest.cc", |
| 1652 "metrics/histogram_delta_serialization_unittest.cc", | 1653 "metrics/histogram_delta_serialization_unittest.cc", |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2088 | 2089 |
| 2089 # GYP: //base.gyp:base_java_unittest_support | 2090 # GYP: //base.gyp:base_java_unittest_support |
| 2090 android_library("base_java_unittest_support") { | 2091 android_library("base_java_unittest_support") { |
| 2091 deps = [ | 2092 deps = [ |
| 2092 ":base_java", | 2093 ":base_java", |
| 2093 ] | 2094 ] |
| 2094 java_files = | 2095 java_files = |
| 2095 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2096 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2096 } | 2097 } |
| 2097 } | 2098 } |
| OLD | NEW |