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 2172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2183 } | 2183 } |
2184 } | 2184 } |
2185 | 2185 |
2186 if (enable_nocompile_tests) { | 2186 if (enable_nocompile_tests) { |
2187 nocompile_test("base_nocompile_tests") { | 2187 nocompile_test("base_nocompile_tests") { |
2188 sources = [ | 2188 sources = [ |
2189 "bind_unittest.nc", | 2189 "bind_unittest.nc", |
2190 "callback_list_unittest.nc", | 2190 "callback_list_unittest.nc", |
2191 "callback_unittest.nc", | 2191 "callback_unittest.nc", |
2192 "memory/weak_ptr_unittest.nc", | 2192 "memory/weak_ptr_unittest.nc", |
| 2193 "metrics/histogram_unittest.nc", |
2193 ] | 2194 ] |
2194 | 2195 |
2195 deps = [ | 2196 deps = [ |
2196 ":base", | 2197 ":base", |
2197 "//base/test:run_all_unittests", | 2198 "//base/test:run_all_unittests", |
2198 "//testing/gtest", | 2199 "//testing/gtest", |
2199 ] | 2200 ] |
2200 } | 2201 } |
2201 } | 2202 } |
2202 | 2203 |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2451 testonly = true | 2452 testonly = true |
2452 deps = [ | 2453 deps = [ |
2453 ":base_java", | 2454 ":base_java", |
2454 ] | 2455 ] |
2455 java_files = [ | 2456 java_files = [ |
2456 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", | 2457 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
2457 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", | 2458 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
2458 ] | 2459 ] |
2459 } | 2460 } |
2460 } | 2461 } |
OLD | NEW |