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