Chromium Code Reviews| 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 1871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1882 if (is_android) { | 1882 if (is_android) { |
| 1883 deps += [ | 1883 deps += [ |
| 1884 ":base_java", | 1884 ":base_java", |
| 1885 ":base_java_unittest_support", | 1885 ":base_java_unittest_support", |
| 1886 "//base/android/jni_generator:jni_generator_tests", | 1886 "//base/android/jni_generator:jni_generator_tests", |
| 1887 ] | 1887 ] |
| 1888 | 1888 |
| 1889 # TODO(brettw) I think this should not be here, we should not be using | 1889 # TODO(brettw) I think this should not be here, we should not be using |
| 1890 # isolate files. | 1890 # isolate files. |
| 1891 isolate_file = "base_unittests.isolate" | 1891 isolate_file = "base_unittests.isolate" |
| 1892 data += [ | |
| 1893 isolate_file, | |
| 1894 "base.isolate", | |
|
Nico
2016/03/11 21:07:47
Why is this needed? GN doesn't use isolate files,
Dirk Pranke
2016/03/11 21:11:18
See https://bugs.chromium.org/p/chromium/issues/de
| |
| 1895 "//third_party/icu/icu.isolate", | |
| 1896 "//third_party/instrumented_libraries/instrumented_libraries.isolate", | |
| 1897 "//build/config/win/msvs_dependencies.isolate", | |
| 1898 ] | |
| 1892 } | 1899 } |
| 1893 | 1900 |
| 1894 if (is_ios) { | 1901 if (is_ios) { |
| 1895 sources -= [ | 1902 sources -= [ |
| 1896 "files/file_locking_unittest.cc", | 1903 "files/file_locking_unittest.cc", |
| 1897 "files/file_path_watcher_unittest.cc", | 1904 "files/file_path_watcher_unittest.cc", |
| 1898 "memory/discardable_shared_memory_unittest.cc", | 1905 "memory/discardable_shared_memory_unittest.cc", |
| 1899 "memory/shared_memory_unittest.cc", | 1906 "memory/shared_memory_unittest.cc", |
| 1900 "process/memory_unittest.cc", | 1907 "process/memory_unittest.cc", |
| 1901 "process/process_unittest.cc", | 1908 "process/process_unittest.cc", |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2168 | 2175 |
| 2169 # GYP: //base.gyp:base_java_unittest_support | 2176 # GYP: //base.gyp:base_java_unittest_support |
| 2170 android_library("base_java_unittest_support") { | 2177 android_library("base_java_unittest_support") { |
| 2171 deps = [ | 2178 deps = [ |
| 2172 ":base_java", | 2179 ":base_java", |
| 2173 ] | 2180 ] |
| 2174 java_files = | 2181 java_files = |
| 2175 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2182 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2176 } | 2183 } |
| 2177 } | 2184 } |
| OLD | NEW |