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 1770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1781 "win/pe_image_unittest.cc", | 1781 "win/pe_image_unittest.cc", |
1782 "win/registry_unittest.cc", | 1782 "win/registry_unittest.cc", |
1783 "win/scoped_bstr_unittest.cc", | 1783 "win/scoped_bstr_unittest.cc", |
1784 "win/scoped_comptr_unittest.cc", | 1784 "win/scoped_comptr_unittest.cc", |
1785 "win/scoped_handle_unittest.cc", | 1785 "win/scoped_handle_unittest.cc", |
1786 "win/scoped_process_information_unittest.cc", | 1786 "win/scoped_process_information_unittest.cc", |
1787 "win/scoped_variant_unittest.cc", | 1787 "win/scoped_variant_unittest.cc", |
1788 "win/shortcut_unittest.cc", | 1788 "win/shortcut_unittest.cc", |
1789 "win/startup_information_unittest.cc", | 1789 "win/startup_information_unittest.cc", |
1790 "win/win_util_unittest.cc", | 1790 "win/win_util_unittest.cc", |
| 1791 "win/windows_version_unittest.cc", |
1791 "win/wrapped_window_proc_unittest.cc", | 1792 "win/wrapped_window_proc_unittest.cc", |
1792 ] | 1793 ] |
1793 | 1794 |
1794 deps = [ | 1795 deps = [ |
1795 ":base", | 1796 ":base", |
1796 ":i18n", | 1797 ":i18n", |
1797 ":message_loop_tests", | 1798 ":message_loop_tests", |
1798 "//base/test:run_all_unittests", | 1799 "//base/test:run_all_unittests", |
1799 "//base/test:test_support", | 1800 "//base/test:test_support", |
1800 "//base/third_party/dynamic_annotations", | 1801 "//base/third_party/dynamic_annotations", |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2098 | 2099 |
2099 # GYP: //base.gyp:base_java_unittest_support | 2100 # GYP: //base.gyp:base_java_unittest_support |
2100 android_library("base_java_unittest_support") { | 2101 android_library("base_java_unittest_support") { |
2101 deps = [ | 2102 deps = [ |
2102 ":base_java", | 2103 ":base_java", |
2103 ] | 2104 ] |
2104 java_files = | 2105 java_files = |
2105 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2106 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2106 } | 2107 } |
2107 } | 2108 } |
OLD | NEW |