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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 "native_library.cc", | 565 "native_library.cc", |
566 "native_library.h", | 566 "native_library.h", |
567 "native_library_ios.mm", | 567 "native_library_ios.mm", |
568 "native_library_mac.mm", | 568 "native_library_mac.mm", |
569 "native_library_posix.cc", | 569 "native_library_posix.cc", |
570 "native_library_win.cc", | 570 "native_library_win.cc", |
571 "nix/mime_util_xdg.cc", | 571 "nix/mime_util_xdg.cc", |
572 "nix/mime_util_xdg.h", | 572 "nix/mime_util_xdg.h", |
573 "nix/xdg_util.cc", | 573 "nix/xdg_util.cc", |
574 "nix/xdg_util.h", | 574 "nix/xdg_util.h", |
| 575 "nonce_token.cc", |
| 576 "nonce_token.h", |
575 "numerics/safe_conversions.h", | 577 "numerics/safe_conversions.h", |
576 "numerics/safe_conversions_impl.h", | 578 "numerics/safe_conversions_impl.h", |
577 "numerics/safe_math.h", | 579 "numerics/safe_math.h", |
578 "numerics/safe_math_impl.h", | 580 "numerics/safe_math_impl.h", |
579 "observer_list.h", | 581 "observer_list.h", |
580 "observer_list_threadsafe.h", | 582 "observer_list_threadsafe.h", |
581 "optional.h", | 583 "optional.h", |
582 "os_compat_android.cc", | 584 "os_compat_android.cc", |
583 "os_compat_android.h", | 585 "os_compat_android.h", |
584 "os_compat_nacl.cc", | 586 "os_compat_nacl.cc", |
(...skipping 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1865 "metrics/histogram_unittest.cc", | 1867 "metrics/histogram_unittest.cc", |
1866 "metrics/metrics_hashes_unittest.cc", | 1868 "metrics/metrics_hashes_unittest.cc", |
1867 "metrics/persistent_histogram_allocator_unittest.cc", | 1869 "metrics/persistent_histogram_allocator_unittest.cc", |
1868 "metrics/persistent_memory_allocator_unittest.cc", | 1870 "metrics/persistent_memory_allocator_unittest.cc", |
1869 "metrics/persistent_sample_map_unittest.cc", | 1871 "metrics/persistent_sample_map_unittest.cc", |
1870 "metrics/sample_map_unittest.cc", | 1872 "metrics/sample_map_unittest.cc", |
1871 "metrics/sample_vector_unittest.cc", | 1873 "metrics/sample_vector_unittest.cc", |
1872 "metrics/sparse_histogram_unittest.cc", | 1874 "metrics/sparse_histogram_unittest.cc", |
1873 "metrics/statistics_recorder_unittest.cc", | 1875 "metrics/statistics_recorder_unittest.cc", |
1874 "native_library_unittest.cc", | 1876 "native_library_unittest.cc", |
| 1877 "nonce_token_unittest.cc", |
1875 "numerics/safe_numerics_unittest.cc", | 1878 "numerics/safe_numerics_unittest.cc", |
1876 "observer_list_unittest.cc", | 1879 "observer_list_unittest.cc", |
1877 "optional_unittest.cc", | 1880 "optional_unittest.cc", |
1878 "os_compat_android_unittest.cc", | 1881 "os_compat_android_unittest.cc", |
1879 "path_service_unittest.cc", | 1882 "path_service_unittest.cc", |
1880 "pickle_unittest.cc", | 1883 "pickle_unittest.cc", |
1881 "posix/file_descriptor_shuffle_unittest.cc", | 1884 "posix/file_descriptor_shuffle_unittest.cc", |
1882 "posix/unix_domain_socket_linux_unittest.cc", | 1885 "posix/unix_domain_socket_linux_unittest.cc", |
1883 "power_monitor/power_monitor_unittest.cc", | 1886 "power_monitor/power_monitor_unittest.cc", |
1884 "process/memory_unittest.cc", | 1887 "process/memory_unittest.cc", |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2455 testonly = true | 2458 testonly = true |
2456 deps = [ | 2459 deps = [ |
2457 ":base_java", | 2460 ":base_java", |
2458 ] | 2461 ] |
2459 java_files = [ | 2462 java_files = [ |
2460 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2463 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
2461 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2464 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
2462 ] | 2465 ] |
2463 } | 2466 } |
2464 } | 2467 } |
OLD | NEW |