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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 "nix/mime_util_xdg.cc", | 547 "nix/mime_util_xdg.cc", |
548 "nix/mime_util_xdg.h", | 548 "nix/mime_util_xdg.h", |
549 "nix/xdg_util.cc", | 549 "nix/xdg_util.cc", |
550 "nix/xdg_util.h", | 550 "nix/xdg_util.h", |
551 "numerics/safe_conversions.h", | 551 "numerics/safe_conversions.h", |
552 "numerics/safe_conversions_impl.h", | 552 "numerics/safe_conversions_impl.h", |
553 "numerics/safe_math.h", | 553 "numerics/safe_math.h", |
554 "numerics/safe_math_impl.h", | 554 "numerics/safe_math_impl.h", |
555 "observer_list.h", | 555 "observer_list.h", |
556 "observer_list_threadsafe.h", | 556 "observer_list_threadsafe.h", |
| 557 "optional.h", |
557 "os_compat_android.cc", | 558 "os_compat_android.cc", |
558 "os_compat_android.h", | 559 "os_compat_android.h", |
559 "os_compat_nacl.cc", | 560 "os_compat_nacl.cc", |
560 "os_compat_nacl.h", | 561 "os_compat_nacl.h", |
561 "path_service.cc", | 562 "path_service.cc", |
562 "path_service.h", | 563 "path_service.h", |
563 "pending_task.cc", | 564 "pending_task.cc", |
564 "pending_task.h", | 565 "pending_task.h", |
565 "pickle.cc", | 566 "pickle.cc", |
566 "pickle.h", | 567 "pickle.h", |
(...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1658 "metrics/histogram_unittest.cc", | 1659 "metrics/histogram_unittest.cc", |
1659 "metrics/metrics_hashes_unittest.cc", | 1660 "metrics/metrics_hashes_unittest.cc", |
1660 "metrics/persistent_memory_allocator_unittest.cc", | 1661 "metrics/persistent_memory_allocator_unittest.cc", |
1661 "metrics/sample_map_unittest.cc", | 1662 "metrics/sample_map_unittest.cc", |
1662 "metrics/sample_vector_unittest.cc", | 1663 "metrics/sample_vector_unittest.cc", |
1663 "metrics/sparse_histogram_unittest.cc", | 1664 "metrics/sparse_histogram_unittest.cc", |
1664 "metrics/statistics_recorder_unittest.cc", | 1665 "metrics/statistics_recorder_unittest.cc", |
1665 "native_library_unittest.cc", | 1666 "native_library_unittest.cc", |
1666 "numerics/safe_numerics_unittest.cc", | 1667 "numerics/safe_numerics_unittest.cc", |
1667 "observer_list_unittest.cc", | 1668 "observer_list_unittest.cc", |
| 1669 "optional_unittest.cc", |
1668 "os_compat_android_unittest.cc", | 1670 "os_compat_android_unittest.cc", |
1669 "path_service_unittest.cc", | 1671 "path_service_unittest.cc", |
1670 "pickle_unittest.cc", | 1672 "pickle_unittest.cc", |
1671 "posix/file_descriptor_shuffle_unittest.cc", | 1673 "posix/file_descriptor_shuffle_unittest.cc", |
1672 "posix/unix_domain_socket_linux_unittest.cc", | 1674 "posix/unix_domain_socket_linux_unittest.cc", |
1673 "power_monitor/power_monitor_unittest.cc", | 1675 "power_monitor/power_monitor_unittest.cc", |
1674 "process/memory_unittest.cc", | 1676 "process/memory_unittest.cc", |
1675 "process/memory_unittest_mac.h", | 1677 "process/memory_unittest_mac.h", |
1676 "process/memory_unittest_mac.mm", | 1678 "process/memory_unittest_mac.mm", |
1677 "process/process_metrics_unittest.cc", | 1679 "process/process_metrics_unittest.cc", |
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2091 | 2093 |
2092 # GYP: //base.gyp:base_java_unittest_support | 2094 # GYP: //base.gyp:base_java_unittest_support |
2093 android_library("base_java_unittest_support") { | 2095 android_library("base_java_unittest_support") { |
2094 deps = [ | 2096 deps = [ |
2095 ":base_java", | 2097 ":base_java", |
2096 ] | 2098 ] |
2097 java_files = | 2099 java_files = |
2098 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2100 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2099 } | 2101 } |
2100 } | 2102 } |
OLD | NEW |