| 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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 552 "nix/mime_util_xdg.cc", | 552 "nix/mime_util_xdg.cc", |
| 553 "nix/mime_util_xdg.h", | 553 "nix/mime_util_xdg.h", |
| 554 "nix/xdg_util.cc", | 554 "nix/xdg_util.cc", |
| 555 "nix/xdg_util.h", | 555 "nix/xdg_util.h", |
| 556 "numerics/safe_conversions.h", | 556 "numerics/safe_conversions.h", |
| 557 "numerics/safe_conversions_impl.h", | 557 "numerics/safe_conversions_impl.h", |
| 558 "numerics/safe_math.h", | 558 "numerics/safe_math.h", |
| 559 "numerics/safe_math_impl.h", | 559 "numerics/safe_math_impl.h", |
| 560 "observer_list.h", | 560 "observer_list.h", |
| 561 "observer_list_threadsafe.h", | 561 "observer_list_threadsafe.h", |
| 562 "optional.h", |
| 562 "os_compat_android.cc", | 563 "os_compat_android.cc", |
| 563 "os_compat_android.h", | 564 "os_compat_android.h", |
| 564 "os_compat_nacl.cc", | 565 "os_compat_nacl.cc", |
| 565 "os_compat_nacl.h", | 566 "os_compat_nacl.h", |
| 566 "path_service.cc", | 567 "path_service.cc", |
| 567 "path_service.h", | 568 "path_service.h", |
| 568 "pending_task.cc", | 569 "pending_task.cc", |
| 569 "pending_task.h", | 570 "pending_task.h", |
| 570 "pickle.cc", | 571 "pickle.cc", |
| 571 "pickle.h", | 572 "pickle.h", |
| (...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1765 "metrics/persistent_histogram_allocator_unittest.cc", | 1766 "metrics/persistent_histogram_allocator_unittest.cc", |
| 1766 "metrics/persistent_memory_allocator_unittest.cc", | 1767 "metrics/persistent_memory_allocator_unittest.cc", |
| 1767 "metrics/persistent_sample_map_unittest.cc", | 1768 "metrics/persistent_sample_map_unittest.cc", |
| 1768 "metrics/sample_map_unittest.cc", | 1769 "metrics/sample_map_unittest.cc", |
| 1769 "metrics/sample_vector_unittest.cc", | 1770 "metrics/sample_vector_unittest.cc", |
| 1770 "metrics/sparse_histogram_unittest.cc", | 1771 "metrics/sparse_histogram_unittest.cc", |
| 1771 "metrics/statistics_recorder_unittest.cc", | 1772 "metrics/statistics_recorder_unittest.cc", |
| 1772 "native_library_unittest.cc", | 1773 "native_library_unittest.cc", |
| 1773 "numerics/safe_numerics_unittest.cc", | 1774 "numerics/safe_numerics_unittest.cc", |
| 1774 "observer_list_unittest.cc", | 1775 "observer_list_unittest.cc", |
| 1776 "optional_unittest.cc", |
| 1775 "os_compat_android_unittest.cc", | 1777 "os_compat_android_unittest.cc", |
| 1776 "path_service_unittest.cc", | 1778 "path_service_unittest.cc", |
| 1777 "pickle_unittest.cc", | 1779 "pickle_unittest.cc", |
| 1778 "posix/file_descriptor_shuffle_unittest.cc", | 1780 "posix/file_descriptor_shuffle_unittest.cc", |
| 1779 "posix/unix_domain_socket_linux_unittest.cc", | 1781 "posix/unix_domain_socket_linux_unittest.cc", |
| 1780 "power_monitor/power_monitor_unittest.cc", | 1782 "power_monitor/power_monitor_unittest.cc", |
| 1781 "process/memory_unittest.cc", | 1783 "process/memory_unittest.cc", |
| 1782 "process/memory_unittest_mac.h", | 1784 "process/memory_unittest_mac.h", |
| 1783 "process/memory_unittest_mac.mm", | 1785 "process/memory_unittest_mac.mm", |
| 1784 "process/process_metrics_unittest.cc", | 1786 "process/process_metrics_unittest.cc", |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2327 | 2329 |
| 2328 # GYP: //base.gyp:base_java_unittest_support | 2330 # GYP: //base.gyp:base_java_unittest_support |
| 2329 android_library("base_java_unittest_support") { | 2331 android_library("base_java_unittest_support") { |
| 2330 deps = [ | 2332 deps = [ |
| 2331 ":base_java", | 2333 ":base_java", |
| 2332 ] | 2334 ] |
| 2333 java_files = | 2335 java_files = |
| 2334 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2336 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2335 } | 2337 } |
| 2336 } | 2338 } |
| OLD | NEW |