| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 "nix/mime_util_xdg.cc", | 552 "nix/mime_util_xdg.cc", |
| 553 "nix/mime_util_xdg.h", | 553 "nix/mime_util_xdg.h", |
| 554 "nix/xdg_util.cc", | 554 "nix/xdg_util.cc", |
| 555 "nix/xdg_util.h", | 555 "nix/xdg_util.h", |
| 556 "numerics/safe_conversions.h", | 556 "numerics/safe_conversions.h", |
| 557 "numerics/safe_conversions_impl.h", | 557 "numerics/safe_conversions_impl.h", |
| 558 "numerics/safe_math.h", | 558 "numerics/safe_math.h", |
| 559 "numerics/safe_math_impl.h", | 559 "numerics/safe_math_impl.h", |
| 560 "observer_list.h", | 560 "observer_list.h", |
| 561 "observer_list_threadsafe.h", | 561 "observer_list_threadsafe.h", |
| 562 "optional.h", | |
| 563 "os_compat_android.cc", | 562 "os_compat_android.cc", |
| 564 "os_compat_android.h", | 563 "os_compat_android.h", |
| 565 "os_compat_nacl.cc", | 564 "os_compat_nacl.cc", |
| 566 "os_compat_nacl.h", | 565 "os_compat_nacl.h", |
| 567 "path_service.cc", | 566 "path_service.cc", |
| 568 "path_service.h", | 567 "path_service.h", |
| 569 "pending_task.cc", | 568 "pending_task.cc", |
| 570 "pending_task.h", | 569 "pending_task.h", |
| 571 "pickle.cc", | 570 "pickle.cc", |
| 572 "pickle.h", | 571 "pickle.h", |
| (...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1786 "metrics/persistent_histogram_allocator_unittest.cc", | 1785 "metrics/persistent_histogram_allocator_unittest.cc", |
| 1787 "metrics/persistent_memory_allocator_unittest.cc", | 1786 "metrics/persistent_memory_allocator_unittest.cc", |
| 1788 "metrics/persistent_sample_map_unittest.cc", | 1787 "metrics/persistent_sample_map_unittest.cc", |
| 1789 "metrics/sample_map_unittest.cc", | 1788 "metrics/sample_map_unittest.cc", |
| 1790 "metrics/sample_vector_unittest.cc", | 1789 "metrics/sample_vector_unittest.cc", |
| 1791 "metrics/sparse_histogram_unittest.cc", | 1790 "metrics/sparse_histogram_unittest.cc", |
| 1792 "metrics/statistics_recorder_unittest.cc", | 1791 "metrics/statistics_recorder_unittest.cc", |
| 1793 "native_library_unittest.cc", | 1792 "native_library_unittest.cc", |
| 1794 "numerics/safe_numerics_unittest.cc", | 1793 "numerics/safe_numerics_unittest.cc", |
| 1795 "observer_list_unittest.cc", | 1794 "observer_list_unittest.cc", |
| 1796 "optional_unittest.cc", | |
| 1797 "os_compat_android_unittest.cc", | 1795 "os_compat_android_unittest.cc", |
| 1798 "path_service_unittest.cc", | 1796 "path_service_unittest.cc", |
| 1799 "pickle_unittest.cc", | 1797 "pickle_unittest.cc", |
| 1800 "posix/file_descriptor_shuffle_unittest.cc", | 1798 "posix/file_descriptor_shuffle_unittest.cc", |
| 1801 "posix/unix_domain_socket_linux_unittest.cc", | 1799 "posix/unix_domain_socket_linux_unittest.cc", |
| 1802 "power_monitor/power_monitor_unittest.cc", | 1800 "power_monitor/power_monitor_unittest.cc", |
| 1803 "process/memory_unittest.cc", | 1801 "process/memory_unittest.cc", |
| 1804 "process/memory_unittest_mac.h", | 1802 "process/memory_unittest_mac.h", |
| 1805 "process/memory_unittest_mac.mm", | 1803 "process/memory_unittest_mac.mm", |
| 1806 "process/process_metrics_unittest.cc", | 1804 "process/process_metrics_unittest.cc", |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2350 | 2348 |
| 2351 # GYP: //base.gyp:base_java_unittest_support | 2349 # GYP: //base.gyp:base_java_unittest_support |
| 2352 android_library("base_java_unittest_support") { | 2350 android_library("base_java_unittest_support") { |
| 2353 deps = [ | 2351 deps = [ |
| 2354 ":base_java", | 2352 ":base_java", |
| 2355 ] | 2353 ] |
| 2356 java_files = | 2354 java_files = |
| 2357 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2355 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2358 } | 2356 } |
| 2359 } | 2357 } |
| OLD | NEW |