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 2109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2120 "test/data/", | 2120 "test/data/", |
2121 ] | 2121 ] |
2122 | 2122 |
2123 # Allow more direct string conversions on platforms with native utf8 | 2123 # Allow more direct string conversions on platforms with native utf8 |
2124 # strings | 2124 # strings |
2125 if (is_mac || is_ios || is_chromeos || is_chromecast) { | 2125 if (is_mac || is_ios || is_chromeos || is_chromecast) { |
2126 defines += [ "SYSTEM_NATIVE_UTF8" ] | 2126 defines += [ "SYSTEM_NATIVE_UTF8" ] |
2127 } | 2127 } |
2128 | 2128 |
2129 if (is_android) { | 2129 if (is_android) { |
| 2130 sources -= [ |
| 2131 "process/process_unittest.cc", |
| 2132 "process/process_util_unittest.cc", |
| 2133 ] |
2130 deps += [ | 2134 deps += [ |
2131 ":base_java", | 2135 ":base_java", |
2132 ":base_java_unittest_support", | 2136 ":base_java_unittest_support", |
2133 "//base/android/jni_generator:jni_generator_tests", | 2137 "//base/android/jni_generator:jni_generator_tests", |
| 2138 "//base/test:test_support_java", |
2134 ] | 2139 ] |
2135 } | 2140 } |
2136 | 2141 |
2137 if (is_ios) { | 2142 if (is_ios) { |
2138 sources -= [ | 2143 sources -= [ |
2139 "files/file_locking_unittest.cc", | 2144 "files/file_locking_unittest.cc", |
2140 "files/file_path_watcher_unittest.cc", | 2145 "files/file_path_watcher_unittest.cc", |
2141 "memory/discardable_shared_memory_unittest.cc", | 2146 "memory/discardable_shared_memory_unittest.cc", |
2142 "memory/shared_memory_unittest.cc", | 2147 "memory/shared_memory_unittest.cc", |
2143 "process/memory_unittest.cc", | 2148 "process/memory_unittest.cc", |
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2542 } | 2547 } |
2543 | 2548 |
2544 fuzzer_test("base_json_correctness_fuzzer") { | 2549 fuzzer_test("base_json_correctness_fuzzer") { |
2545 sources = [ | 2550 sources = [ |
2546 "json/correctness_fuzzer.cc", | 2551 "json/correctness_fuzzer.cc", |
2547 ] | 2552 ] |
2548 deps = [ | 2553 deps = [ |
2549 ":base", | 2554 ":base", |
2550 ] | 2555 ] |
2551 } | 2556 } |
OLD | NEW |