| 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 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1608 "memory/linked_ptr_unittest.cc", | 1608 "memory/linked_ptr_unittest.cc", |
| 1609 "memory/memory_pressure_monitor_chromeos_unittest.cc", | 1609 "memory/memory_pressure_monitor_chromeos_unittest.cc", |
| 1610 "memory/memory_pressure_monitor_win_unittest.cc", | 1610 "memory/memory_pressure_monitor_win_unittest.cc", |
| 1611 "memory/ptr_util_unittest.cc", | 1611 "memory/ptr_util_unittest.cc", |
| 1612 "memory/ref_counted_memory_unittest.cc", | 1612 "memory/ref_counted_memory_unittest.cc", |
| 1613 "memory/ref_counted_unittest.cc", | 1613 "memory/ref_counted_unittest.cc", |
| 1614 "memory/scoped_ptr_unittest.cc", | 1614 "memory/scoped_ptr_unittest.cc", |
| 1615 "memory/scoped_vector_unittest.cc", | 1615 "memory/scoped_vector_unittest.cc", |
| 1616 "memory/shared_memory_mac_unittest.cc", | 1616 "memory/shared_memory_mac_unittest.cc", |
| 1617 "memory/shared_memory_unittest.cc", | 1617 "memory/shared_memory_unittest.cc", |
| 1618 "memory/shared_memory_win_unittest.cc", |
| 1618 "memory/singleton_unittest.cc", | 1619 "memory/singleton_unittest.cc", |
| 1619 "memory/weak_ptr_unittest.cc", | 1620 "memory/weak_ptr_unittest.cc", |
| 1620 "message_loop/message_loop_task_runner_unittest.cc", | 1621 "message_loop/message_loop_task_runner_unittest.cc", |
| 1621 "message_loop/message_loop_unittest.cc", | 1622 "message_loop/message_loop_unittest.cc", |
| 1622 "message_loop/message_pump_glib_unittest.cc", | 1623 "message_loop/message_pump_glib_unittest.cc", |
| 1623 "message_loop/message_pump_io_ios_unittest.cc", | 1624 "message_loop/message_pump_io_ios_unittest.cc", |
| 1624 "metrics/bucket_ranges_unittest.cc", | 1625 "metrics/bucket_ranges_unittest.cc", |
| 1625 "metrics/field_trial_unittest.cc", | 1626 "metrics/field_trial_unittest.cc", |
| 1626 "metrics/histogram_base_unittest.cc", | 1627 "metrics/histogram_base_unittest.cc", |
| 1627 "metrics/histogram_delta_serialization_unittest.cc", | 1628 "metrics/histogram_delta_serialization_unittest.cc", |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2038 | 2039 |
| 2039 # GYP: //base.gyp:base_java_unittest_support | 2040 # GYP: //base.gyp:base_java_unittest_support |
| 2040 android_library("base_java_unittest_support") { | 2041 android_library("base_java_unittest_support") { |
| 2041 deps = [ | 2042 deps = [ |
| 2042 ":base_java", | 2043 ":base_java", |
| 2043 ] | 2044 ] |
| 2044 java_files = | 2045 java_files = |
| 2045 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2046 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2046 } | 2047 } |
| 2047 } | 2048 } |
| OLD | NEW |