| 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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 "native_library.cc", | 558 "native_library.cc", |
| 559 "native_library.h", | 559 "native_library.h", |
| 560 "native_library_ios.mm", | 560 "native_library_ios.mm", |
| 561 "native_library_mac.mm", | 561 "native_library_mac.mm", |
| 562 "native_library_posix.cc", | 562 "native_library_posix.cc", |
| 563 "native_library_win.cc", | 563 "native_library_win.cc", |
| 564 "nix/mime_util_xdg.cc", | 564 "nix/mime_util_xdg.cc", |
| 565 "nix/mime_util_xdg.h", | 565 "nix/mime_util_xdg.h", |
| 566 "nix/xdg_util.cc", | 566 "nix/xdg_util.cc", |
| 567 "nix/xdg_util.h", | 567 "nix/xdg_util.h", |
| 568 "nonce.cc", |
| 569 "nonce.h", |
| 568 "numerics/safe_conversions.h", | 570 "numerics/safe_conversions.h", |
| 569 "numerics/safe_conversions_impl.h", | 571 "numerics/safe_conversions_impl.h", |
| 570 "numerics/safe_math.h", | 572 "numerics/safe_math.h", |
| 571 "numerics/safe_math_impl.h", | 573 "numerics/safe_math_impl.h", |
| 572 "observer_list.h", | 574 "observer_list.h", |
| 573 "observer_list_threadsafe.h", | 575 "observer_list_threadsafe.h", |
| 574 "optional.h", | 576 "optional.h", |
| 575 "os_compat_android.cc", | 577 "os_compat_android.cc", |
| 576 "os_compat_android.h", | 578 "os_compat_android.h", |
| 577 "os_compat_nacl.cc", | 579 "os_compat_nacl.cc", |
| (...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1854 "metrics/histogram_unittest.cc", | 1856 "metrics/histogram_unittest.cc", |
| 1855 "metrics/metrics_hashes_unittest.cc", | 1857 "metrics/metrics_hashes_unittest.cc", |
| 1856 "metrics/persistent_histogram_allocator_unittest.cc", | 1858 "metrics/persistent_histogram_allocator_unittest.cc", |
| 1857 "metrics/persistent_memory_allocator_unittest.cc", | 1859 "metrics/persistent_memory_allocator_unittest.cc", |
| 1858 "metrics/persistent_sample_map_unittest.cc", | 1860 "metrics/persistent_sample_map_unittest.cc", |
| 1859 "metrics/sample_map_unittest.cc", | 1861 "metrics/sample_map_unittest.cc", |
| 1860 "metrics/sample_vector_unittest.cc", | 1862 "metrics/sample_vector_unittest.cc", |
| 1861 "metrics/sparse_histogram_unittest.cc", | 1863 "metrics/sparse_histogram_unittest.cc", |
| 1862 "metrics/statistics_recorder_unittest.cc", | 1864 "metrics/statistics_recorder_unittest.cc", |
| 1863 "native_library_unittest.cc", | 1865 "native_library_unittest.cc", |
| 1866 "nonce_unittest.cc", |
| 1864 "numerics/safe_numerics_unittest.cc", | 1867 "numerics/safe_numerics_unittest.cc", |
| 1865 "observer_list_unittest.cc", | 1868 "observer_list_unittest.cc", |
| 1866 "optional_unittest.cc", | 1869 "optional_unittest.cc", |
| 1867 "os_compat_android_unittest.cc", | 1870 "os_compat_android_unittest.cc", |
| 1868 "path_service_unittest.cc", | 1871 "path_service_unittest.cc", |
| 1869 "pickle_unittest.cc", | 1872 "pickle_unittest.cc", |
| 1870 "posix/file_descriptor_shuffle_unittest.cc", | 1873 "posix/file_descriptor_shuffle_unittest.cc", |
| 1871 "posix/unix_domain_socket_linux_unittest.cc", | 1874 "posix/unix_domain_socket_linux_unittest.cc", |
| 1872 "power_monitor/power_monitor_unittest.cc", | 1875 "power_monitor/power_monitor_unittest.cc", |
| 1873 "process/memory_unittest.cc", | 1876 "process/memory_unittest.cc", |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2444 testonly = true | 2447 testonly = true |
| 2445 deps = [ | 2448 deps = [ |
| 2446 ":base_java", | 2449 ":base_java", |
| 2447 ] | 2450 ] |
| 2448 java_files = [ | 2451 java_files = [ |
| 2449 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2452 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2450 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2453 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2451 ] | 2454 ] |
| 2452 } | 2455 } |
| 2453 } | 2456 } |
| OLD | NEW |