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 "nix/mime_util_xdg.cc", | 558 "nix/mime_util_xdg.cc", |
559 "nix/mime_util_xdg.h", | 559 "nix/mime_util_xdg.h", |
560 "nix/xdg_util.cc", | 560 "nix/xdg_util.cc", |
561 "nix/xdg_util.h", | 561 "nix/xdg_util.h", |
562 "numerics/safe_conversions.h", | 562 "numerics/safe_conversions.h", |
563 "numerics/safe_conversions_impl.h", | 563 "numerics/safe_conversions_impl.h", |
564 "numerics/safe_math.h", | 564 "numerics/safe_math.h", |
565 "numerics/safe_math_impl.h", | 565 "numerics/safe_math_impl.h", |
566 "observer_list.h", | 566 "observer_list.h", |
567 "observer_list_threadsafe.h", | 567 "observer_list_threadsafe.h", |
| 568 "optional.h", |
568 "os_compat_android.cc", | 569 "os_compat_android.cc", |
569 "os_compat_android.h", | 570 "os_compat_android.h", |
570 "os_compat_nacl.cc", | 571 "os_compat_nacl.cc", |
571 "os_compat_nacl.h", | 572 "os_compat_nacl.h", |
572 "path_service.cc", | 573 "path_service.cc", |
573 "path_service.h", | 574 "path_service.h", |
574 "pending_task.cc", | 575 "pending_task.cc", |
575 "pending_task.h", | 576 "pending_task.h", |
576 "pickle.cc", | 577 "pickle.cc", |
577 "pickle.h", | 578 "pickle.h", |
(...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1759 "metrics/persistent_histogram_allocator_unittest.cc", | 1760 "metrics/persistent_histogram_allocator_unittest.cc", |
1760 "metrics/persistent_memory_allocator_unittest.cc", | 1761 "metrics/persistent_memory_allocator_unittest.cc", |
1761 "metrics/persistent_sample_map_unittest.cc", | 1762 "metrics/persistent_sample_map_unittest.cc", |
1762 "metrics/sample_map_unittest.cc", | 1763 "metrics/sample_map_unittest.cc", |
1763 "metrics/sample_vector_unittest.cc", | 1764 "metrics/sample_vector_unittest.cc", |
1764 "metrics/sparse_histogram_unittest.cc", | 1765 "metrics/sparse_histogram_unittest.cc", |
1765 "metrics/statistics_recorder_unittest.cc", | 1766 "metrics/statistics_recorder_unittest.cc", |
1766 "native_library_unittest.cc", | 1767 "native_library_unittest.cc", |
1767 "numerics/safe_numerics_unittest.cc", | 1768 "numerics/safe_numerics_unittest.cc", |
1768 "observer_list_unittest.cc", | 1769 "observer_list_unittest.cc", |
| 1770 "optional_unittest.cc", |
1769 "os_compat_android_unittest.cc", | 1771 "os_compat_android_unittest.cc", |
1770 "path_service_unittest.cc", | 1772 "path_service_unittest.cc", |
1771 "pickle_unittest.cc", | 1773 "pickle_unittest.cc", |
1772 "posix/file_descriptor_shuffle_unittest.cc", | 1774 "posix/file_descriptor_shuffle_unittest.cc", |
1773 "posix/unix_domain_socket_linux_unittest.cc", | 1775 "posix/unix_domain_socket_linux_unittest.cc", |
1774 "power_monitor/power_monitor_unittest.cc", | 1776 "power_monitor/power_monitor_unittest.cc", |
1775 "process/memory_unittest.cc", | 1777 "process/memory_unittest.cc", |
1776 "process/memory_unittest_mac.h", | 1778 "process/memory_unittest_mac.h", |
1777 "process/memory_unittest_mac.mm", | 1779 "process/memory_unittest_mac.mm", |
1778 "process/process_metrics_unittest.cc", | 1780 "process/process_metrics_unittest.cc", |
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2212 | 2214 |
2213 # GYP: //base.gyp:base_java_unittest_support | 2215 # GYP: //base.gyp:base_java_unittest_support |
2214 android_library("base_java_unittest_support") { | 2216 android_library("base_java_unittest_support") { |
2215 deps = [ | 2217 deps = [ |
2216 ":base_java", | 2218 ":base_java", |
2217 ] | 2219 ] |
2218 java_files = | 2220 java_files = |
2219 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2221 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2220 } | 2222 } |
2221 } | 2223 } |
OLD | NEW |