| 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 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 "win/scoped_process_information.cc", | 967 "win/scoped_process_information.cc", |
| 968 "win/scoped_process_information.h", | 968 "win/scoped_process_information.h", |
| 969 "win/scoped_propvariant.h", | 969 "win/scoped_propvariant.h", |
| 970 "win/scoped_select_object.h", | 970 "win/scoped_select_object.h", |
| 971 "win/scoped_variant.cc", | 971 "win/scoped_variant.cc", |
| 972 "win/scoped_variant.h", | 972 "win/scoped_variant.h", |
| 973 "win/shortcut.cc", | 973 "win/shortcut.cc", |
| 974 "win/shortcut.h", | 974 "win/shortcut.h", |
| 975 "win/startup_information.cc", | 975 "win/startup_information.cc", |
| 976 "win/startup_information.h", | 976 "win/startup_information.h", |
| 977 "win/wait_chain.cc", |
| 978 "win/wait_chain.h", |
| 977 "win/win_util.cc", | 979 "win/win_util.cc", |
| 978 "win/win_util.h", | 980 "win/win_util.h", |
| 979 "win/windows_version.cc", | 981 "win/windows_version.cc", |
| 980 "win/windows_version.h", | 982 "win/windows_version.h", |
| 981 "win/wrapped_window_proc.cc", | 983 "win/wrapped_window_proc.cc", |
| 982 "win/wrapped_window_proc.h", | 984 "win/wrapped_window_proc.h", |
| 983 ] | 985 ] |
| 984 | 986 |
| 985 defines = [] | 987 defines = [] |
| 986 data = [] | 988 data = [] |
| (...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1883 "win/object_watcher_unittest.cc", | 1885 "win/object_watcher_unittest.cc", |
| 1884 "win/pe_image_unittest.cc", | 1886 "win/pe_image_unittest.cc", |
| 1885 "win/registry_unittest.cc", | 1887 "win/registry_unittest.cc", |
| 1886 "win/scoped_bstr_unittest.cc", | 1888 "win/scoped_bstr_unittest.cc", |
| 1887 "win/scoped_comptr_unittest.cc", | 1889 "win/scoped_comptr_unittest.cc", |
| 1888 "win/scoped_handle_unittest.cc", | 1890 "win/scoped_handle_unittest.cc", |
| 1889 "win/scoped_process_information_unittest.cc", | 1891 "win/scoped_process_information_unittest.cc", |
| 1890 "win/scoped_variant_unittest.cc", | 1892 "win/scoped_variant_unittest.cc", |
| 1891 "win/shortcut_unittest.cc", | 1893 "win/shortcut_unittest.cc", |
| 1892 "win/startup_information_unittest.cc", | 1894 "win/startup_information_unittest.cc", |
| 1895 "win/wait_chain_unittest.cc", |
| 1893 "win/win_util_unittest.cc", | 1896 "win/win_util_unittest.cc", |
| 1894 "win/windows_version_unittest.cc", | 1897 "win/windows_version_unittest.cc", |
| 1895 "win/wrapped_window_proc_unittest.cc", | 1898 "win/wrapped_window_proc_unittest.cc", |
| 1896 ] | 1899 ] |
| 1897 | 1900 |
| 1898 deps = [ | 1901 deps = [ |
| 1899 ":base", | 1902 ":base", |
| 1900 ":i18n", | 1903 ":i18n", |
| 1901 ":message_loop_tests", | 1904 ":message_loop_tests", |
| 1902 "//base/test:run_all_unittests", | 1905 "//base/test:run_all_unittests", |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2316 | 2319 |
| 2317 # GYP: //base.gyp:base_java_unittest_support | 2320 # GYP: //base.gyp:base_java_unittest_support |
| 2318 android_library("base_java_unittest_support") { | 2321 android_library("base_java_unittest_support") { |
| 2319 deps = [ | 2322 deps = [ |
| 2320 ":base_java", | 2323 ":base_java", |
| 2321 ] | 2324 ] |
| 2322 java_files = | 2325 java_files = |
| 2323 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2326 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2324 } | 2327 } |
| 2325 } | 2328 } |
| OLD | NEW |