| 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 1967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1978 "win/wait_chain_unittest.cc", | 1978 "win/wait_chain_unittest.cc", |
| 1979 "win/win_util_unittest.cc", | 1979 "win/win_util_unittest.cc", |
| 1980 "win/windows_version_unittest.cc", | 1980 "win/windows_version_unittest.cc", |
| 1981 "win/wrapped_window_proc_unittest.cc", | 1981 "win/wrapped_window_proc_unittest.cc", |
| 1982 ] | 1982 ] |
| 1983 | 1983 |
| 1984 deps = [ | 1984 deps = [ |
| 1985 ":base", | 1985 ":base", |
| 1986 ":i18n", | 1986 ":i18n", |
| 1987 ":message_loop_tests", | 1987 ":message_loop_tests", |
| 1988 "//base/allocator:features", |
| 1988 "//base/test:run_all_unittests", | 1989 "//base/test:run_all_unittests", |
| 1989 "//base/test:test_support", | 1990 "//base/test:test_support", |
| 1990 "//base/third_party/dynamic_annotations", | 1991 "//base/third_party/dynamic_annotations", |
| 1991 "//testing/gmock", | 1992 "//testing/gmock", |
| 1992 "//testing/gtest", | 1993 "//testing/gtest", |
| 1993 "//third_party/icu", | 1994 "//third_party/icu", |
| 1994 ] | 1995 ] |
| 1995 | 1996 |
| 1996 if (is_ios || is_mac) { | 1997 if (is_ios || is_mac) { |
| 1997 deps += [ ":base_unittests_arc" ] | 1998 deps += [ ":base_unittests_arc" ] |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2419 | 2420 |
| 2420 # GYP: //base.gyp:base_java_unittest_support | 2421 # GYP: //base.gyp:base_java_unittest_support |
| 2421 android_library("base_java_unittest_support") { | 2422 android_library("base_java_unittest_support") { |
| 2422 deps = [ | 2423 deps = [ |
| 2423 ":base_java", | 2424 ":base_java", |
| 2424 ] | 2425 ] |
| 2425 java_files = | 2426 java_files = |
| 2426 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2427 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2427 } | 2428 } |
| 2428 } | 2429 } |
| OLD | NEW |