| 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 1833 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1844 "win/pe_image_unittest.cc", | 1844 "win/pe_image_unittest.cc", |
| 1845 "win/registry_unittest.cc", | 1845 "win/registry_unittest.cc", |
| 1846 "win/scoped_bstr_unittest.cc", | 1846 "win/scoped_bstr_unittest.cc", |
| 1847 "win/scoped_comptr_unittest.cc", | 1847 "win/scoped_comptr_unittest.cc", |
| 1848 "win/scoped_handle_unittest.cc", | 1848 "win/scoped_handle_unittest.cc", |
| 1849 "win/scoped_process_information_unittest.cc", | 1849 "win/scoped_process_information_unittest.cc", |
| 1850 "win/scoped_variant_unittest.cc", | 1850 "win/scoped_variant_unittest.cc", |
| 1851 "win/shortcut_unittest.cc", | 1851 "win/shortcut_unittest.cc", |
| 1852 "win/startup_information_unittest.cc", | 1852 "win/startup_information_unittest.cc", |
| 1853 "win/win_util_unittest.cc", | 1853 "win/win_util_unittest.cc", |
| 1854 "win/windows_version_unittest.cc", |
| 1854 "win/wrapped_window_proc_unittest.cc", | 1855 "win/wrapped_window_proc_unittest.cc", |
| 1855 ] | 1856 ] |
| 1856 | 1857 |
| 1857 deps = [ | 1858 deps = [ |
| 1858 ":base", | 1859 ":base", |
| 1859 ":i18n", | 1860 ":i18n", |
| 1860 ":message_loop_tests", | 1861 ":message_loop_tests", |
| 1861 "//base/test:run_all_unittests", | 1862 "//base/test:run_all_unittests", |
| 1862 "//base/test:test_support", | 1863 "//base/test:test_support", |
| 1863 "//base/third_party/dynamic_annotations", | 1864 "//base/third_party/dynamic_annotations", |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2168 | 2169 |
| 2169 # GYP: //base.gyp:base_java_unittest_support | 2170 # GYP: //base.gyp:base_java_unittest_support |
| 2170 android_library("base_java_unittest_support") { | 2171 android_library("base_java_unittest_support") { |
| 2171 deps = [ | 2172 deps = [ |
| 2172 ":base_java", | 2173 ":base_java", |
| 2173 ] | 2174 ] |
| 2174 java_files = | 2175 java_files = |
| 2175 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2176 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2176 } | 2177 } |
| 2177 } | 2178 } |
| OLD | NEW |