| 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 1732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1743 "cpu_unittest.cc", | 1743 "cpu_unittest.cc", |
| 1744 "debug/crash_logging_unittest.cc", | 1744 "debug/crash_logging_unittest.cc", |
| 1745 "debug/debugger_unittest.cc", | 1745 "debug/debugger_unittest.cc", |
| 1746 "debug/leak_tracker_unittest.cc", | 1746 "debug/leak_tracker_unittest.cc", |
| 1747 "debug/proc_maps_linux_unittest.cc", | 1747 "debug/proc_maps_linux_unittest.cc", |
| 1748 "debug/stack_trace_unittest.cc", | 1748 "debug/stack_trace_unittest.cc", |
| 1749 "debug/task_annotator_unittest.cc", | 1749 "debug/task_annotator_unittest.cc", |
| 1750 "deferred_sequenced_task_runner_unittest.cc", | 1750 "deferred_sequenced_task_runner_unittest.cc", |
| 1751 "environment_unittest.cc", | 1751 "environment_unittest.cc", |
| 1752 "feature_list_unittest.cc", | 1752 "feature_list_unittest.cc", |
| 1753 "file_version_info_unittest.cc", | 1753 "file_version_info_win_unittest.cc", |
| 1754 "files/dir_reader_posix_unittest.cc", | 1754 "files/dir_reader_posix_unittest.cc", |
| 1755 "files/file_locking_unittest.cc", | 1755 "files/file_locking_unittest.cc", |
| 1756 "files/file_path_unittest.cc", | 1756 "files/file_path_unittest.cc", |
| 1757 "files/file_path_watcher_unittest.cc", | 1757 "files/file_path_watcher_unittest.cc", |
| 1758 "files/file_proxy_unittest.cc", | 1758 "files/file_proxy_unittest.cc", |
| 1759 "files/file_unittest.cc", | 1759 "files/file_unittest.cc", |
| 1760 "files/file_util_proxy_unittest.cc", | 1760 "files/file_util_proxy_unittest.cc", |
| 1761 "files/file_util_unittest.cc", | 1761 "files/file_util_unittest.cc", |
| 1762 "files/important_file_writer_unittest.cc", | 1762 "files/important_file_writer_unittest.cc", |
| 1763 "files/memory_mapped_file_unittest.cc", | 1763 "files/memory_mapped_file_unittest.cc", |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2048 } | 2048 } |
| 2049 | 2049 |
| 2050 if (is_mac) { | 2050 if (is_mac) { |
| 2051 libs = [ | 2051 libs = [ |
| 2052 "CoreFoundation.framework", | 2052 "CoreFoundation.framework", |
| 2053 "Foundation.framework", | 2053 "Foundation.framework", |
| 2054 ] | 2054 ] |
| 2055 } | 2055 } |
| 2056 | 2056 |
| 2057 if (is_linux) { | 2057 if (is_linux) { |
| 2058 sources -= [ "file_version_info_unittest.cc" ] | |
| 2059 | |
| 2060 if (is_desktop_linux) { | 2058 if (is_desktop_linux) { |
| 2061 sources += [ "nix/xdg_util_unittest.cc" ] | 2059 sources += [ "nix/xdg_util_unittest.cc" ] |
| 2062 } | 2060 } |
| 2063 | 2061 |
| 2064 deps += [ "//base/test:malloc_wrapper" ] | 2062 deps += [ "//base/test:malloc_wrapper" ] |
| 2065 | 2063 |
| 2066 if (use_glib) { | 2064 if (use_glib) { |
| 2067 configs += [ "//build/config/linux:glib" ] | 2065 configs += [ "//build/config/linux:glib" ] |
| 2068 } | 2066 } |
| 2069 | 2067 |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2416 | 2414 |
| 2417 # GYP: //base.gyp:base_java_unittest_support | 2415 # GYP: //base.gyp:base_java_unittest_support |
| 2418 android_library("base_java_unittest_support") { | 2416 android_library("base_java_unittest_support") { |
| 2419 deps = [ | 2417 deps = [ |
| 2420 ":base_java", | 2418 ":base_java", |
| 2421 ] | 2419 ] |
| 2422 java_files = | 2420 java_files = |
| 2423 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2421 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2424 } | 2422 } |
| 2425 } | 2423 } |
| OLD | NEW |