| 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 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1789 "win/pe_image_unittest.cc", | 1789 "win/pe_image_unittest.cc", |
| 1790 "win/registry_unittest.cc", | 1790 "win/registry_unittest.cc", |
| 1791 "win/scoped_bstr_unittest.cc", | 1791 "win/scoped_bstr_unittest.cc", |
| 1792 "win/scoped_comptr_unittest.cc", | 1792 "win/scoped_comptr_unittest.cc", |
| 1793 "win/scoped_handle_unittest.cc", | 1793 "win/scoped_handle_unittest.cc", |
| 1794 "win/scoped_process_information_unittest.cc", | 1794 "win/scoped_process_information_unittest.cc", |
| 1795 "win/scoped_variant_unittest.cc", | 1795 "win/scoped_variant_unittest.cc", |
| 1796 "win/shortcut_unittest.cc", | 1796 "win/shortcut_unittest.cc", |
| 1797 "win/startup_information_unittest.cc", | 1797 "win/startup_information_unittest.cc", |
| 1798 "win/win_util_unittest.cc", | 1798 "win/win_util_unittest.cc", |
| 1799 "win/windows_version_unittest.cc", |
| 1799 "win/wrapped_window_proc_unittest.cc", | 1800 "win/wrapped_window_proc_unittest.cc", |
| 1800 ] | 1801 ] |
| 1801 | 1802 |
| 1802 deps = [ | 1803 deps = [ |
| 1803 ":base", | 1804 ":base", |
| 1804 ":i18n", | 1805 ":i18n", |
| 1805 ":message_loop_tests", | 1806 ":message_loop_tests", |
| 1806 "//base/test:run_all_unittests", | 1807 "//base/test:run_all_unittests", |
| 1807 "//base/test:test_support", | 1808 "//base/test:test_support", |
| 1808 "//base/third_party/dynamic_annotations", | 1809 "//base/third_party/dynamic_annotations", |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2113 | 2114 |
| 2114 # GYP: //base.gyp:base_java_unittest_support | 2115 # GYP: //base.gyp:base_java_unittest_support |
| 2115 android_library("base_java_unittest_support") { | 2116 android_library("base_java_unittest_support") { |
| 2116 deps = [ | 2117 deps = [ |
| 2117 ":base_java", | 2118 ":base_java", |
| 2118 ] | 2119 ] |
| 2119 java_files = | 2120 java_files = |
| 2120 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2121 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2121 } | 2122 } |
| 2122 } | 2123 } |
| OLD | NEW |