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 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
944 data = [] | 944 data = [] |
945 | 945 |
946 configs += [ | 946 configs += [ |
947 ":base_flags", | 947 ":base_flags", |
948 ":base_implementation", | 948 ":base_implementation", |
949 "//base/allocator:allocator_shim_define", # for allocator_check.cc. | 949 "//base/allocator:allocator_shim_define", # for allocator_check.cc. |
950 "//build/config:precompiled_headers", | 950 "//build/config:precompiled_headers", |
951 ] | 951 ] |
952 | 952 |
953 deps = [ | 953 deps = [ |
| 954 "//base/allocator", |
954 "//base/third_party/dynamic_annotations", | 955 "//base/third_party/dynamic_annotations", |
955 "//third_party/modp_b64", | 956 "//third_party/modp_b64", |
956 ] | 957 ] |
957 | 958 |
958 public_deps = [ | 959 public_deps = [ |
959 ":base_paths", | 960 ":base_paths", |
960 ":base_static", | 961 ":base_static", |
961 ":debugging_flags", | 962 ":debugging_flags", |
962 ] | 963 ] |
963 | 964 |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1851 "win/win_util_unittest.cc", | 1852 "win/win_util_unittest.cc", |
1852 "win/wrapped_window_proc_unittest.cc", | 1853 "win/wrapped_window_proc_unittest.cc", |
1853 ] | 1854 ] |
1854 | 1855 |
1855 deps = [ | 1856 deps = [ |
1856 ":base", | 1857 ":base", |
1857 ":i18n", | 1858 ":i18n", |
1858 ":message_loop_tests", | 1859 ":message_loop_tests", |
1859 ":prefs", | 1860 ":prefs", |
1860 ":prefs_test_support", | 1861 ":prefs_test_support", |
1861 "//base/allocator", | |
1862 "//base/test:run_all_unittests", | 1862 "//base/test:run_all_unittests", |
1863 "//base/test:test_support", | 1863 "//base/test:test_support", |
1864 "//base/third_party/dynamic_annotations", | 1864 "//base/third_party/dynamic_annotations", |
1865 "//testing/gmock", | 1865 "//testing/gmock", |
1866 "//testing/gtest", | 1866 "//testing/gtest", |
1867 "//third_party/icu", | 1867 "//third_party/icu", |
1868 ] | 1868 ] |
1869 | 1869 |
| 1870 # Some unittests depend on the ALLOCATOR_SHIM macro. |
| 1871 configs += [ "//base/allocator:allocator_shim_define" ] |
| 1872 |
1870 data = [ | 1873 data = [ |
1871 "test/data/", | 1874 "test/data/", |
1872 ] | 1875 ] |
1873 | 1876 |
1874 # Allow more direct string conversions on platforms with native utf8 | 1877 # Allow more direct string conversions on platforms with native utf8 |
1875 # strings | 1878 # strings |
1876 if (is_mac || is_ios || is_chromeos) { | 1879 if (is_mac || is_ios || is_chromeos) { |
1877 defines = [ "SYSTEM_NATIVE_UTF8" ] | 1880 defines = [ "SYSTEM_NATIVE_UTF8" ] |
1878 } | 1881 } |
1879 | 1882 |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2132 | 2135 |
2133 # GYP: //base.gyp:base_java_unittest_support | 2136 # GYP: //base.gyp:base_java_unittest_support |
2134 android_library("base_java_unittest_support") { | 2137 android_library("base_java_unittest_support") { |
2135 deps = [ | 2138 deps = [ |
2136 ":base_java", | 2139 ":base_java", |
2137 ] | 2140 ] |
2138 java_files = | 2141 java_files = |
2139 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2142 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2140 } | 2143 } |
2141 } | 2144 } |
OLD | NEW |