Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: base/BUILD.gn

Issue 2549363004: Multiprocess test client: Android child process launcher rework. (Closed)
Patch Set: Removed unused include. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 2126 matching lines...) Expand 10 before | Expand all | Expand 10 after
2137 "test/data/", 2137 "test/data/",
2138 ] 2138 ]
2139 2139
2140 # Allow more direct string conversions on platforms with native utf8 2140 # Allow more direct string conversions on platforms with native utf8
2141 # strings 2141 # strings
2142 if (is_mac || is_ios || is_chromeos || is_chromecast) { 2142 if (is_mac || is_ios || is_chromeos || is_chromecast) {
2143 defines += [ "SYSTEM_NATIVE_UTF8" ] 2143 defines += [ "SYSTEM_NATIVE_UTF8" ]
2144 } 2144 }
2145 2145
2146 if (is_android) { 2146 if (is_android) {
2147 sources -= [
2148 "process/process_unittest.cc",
2149 "process/process_util_unittest.cc",
2150 ]
2147 deps += [ 2151 deps += [
2148 ":base_java", 2152 ":base_java",
2149 ":base_java_unittest_support", 2153 ":base_java_unittest_support",
2150 "//base/android/jni_generator:jni_generator_tests", 2154 "//base/android/jni_generator:jni_generator_tests",
2155 "//base/test:test_support_java",
2151 ] 2156 ]
2152 } 2157 }
2153 2158
2154 if (is_ios) { 2159 if (is_ios) {
2155 sources -= [ 2160 sources -= [
2156 "files/file_locking_unittest.cc", 2161 "files/file_locking_unittest.cc",
2157 "files/file_path_watcher_unittest.cc", 2162 "files/file_path_watcher_unittest.cc",
2158 "memory/discardable_shared_memory_unittest.cc", 2163 "memory/discardable_shared_memory_unittest.cc",
2159 "memory/shared_memory_unittest.cc", 2164 "memory/shared_memory_unittest.cc",
2160 "process/memory_unittest.cc", 2165 "process/memory_unittest.cc",
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
2563 } 2568 }
2564 2569
2565 fuzzer_test("base_json_correctness_fuzzer") { 2570 fuzzer_test("base_json_correctness_fuzzer") {
2566 sources = [ 2571 sources = [
2567 "json/correctness_fuzzer.cc", 2572 "json/correctness_fuzzer.cc",
2568 ] 2573 ]
2569 deps = [ 2574 deps = [
2570 ":base", 2575 ":base",
2571 ] 2576 ]
2572 } 2577 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698