| 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 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1871 "//base/third_party/dynamic_annotations", | 1871 "//base/third_party/dynamic_annotations", |
| 1872 "//testing/gmock", | 1872 "//testing/gmock", |
| 1873 "//testing/gtest", | 1873 "//testing/gtest", |
| 1874 "//third_party/icu", | 1874 "//third_party/icu", |
| 1875 ] | 1875 ] |
| 1876 | 1876 |
| 1877 data = [ | 1877 data = [ |
| 1878 "test/data/", | 1878 "test/data/", |
| 1879 ] | 1879 ] |
| 1880 | 1880 |
| 1881 if (is_ios) { |
| 1882 bundle_test_name = "baseunittests" |
| 1883 test_data_files = [ |
| 1884 "test/data/file_util/binary_file.bin", |
| 1885 "test/data/file_util/binary_file_diff.bin", |
| 1886 "test/data/file_util/binary_file_same.bin", |
| 1887 "test/data/file_util/blank_line.txt", |
| 1888 "test/data/file_util/blank_line_crlf.txt", |
| 1889 "test/data/file_util/crlf.txt", |
| 1890 "test/data/file_util/different.txt", |
| 1891 "test/data/file_util/different_first.txt", |
| 1892 "test/data/file_util/different_last.txt", |
| 1893 "test/data/file_util/empty1.txt", |
| 1894 "test/data/file_util/empty2.txt", |
| 1895 "test/data/file_util/first1.txt", |
| 1896 "test/data/file_util/first2.txt", |
| 1897 "test/data/file_util/original.txt", |
| 1898 "test/data/file_util/red.png", |
| 1899 "test/data/file_util/same.txt", |
| 1900 "test/data/file_util/same_length.txt", |
| 1901 "test/data/file_util/shortened.txt", |
| 1902 "test/data/file_version_info_unittest/FileVersionInfoTest1.dll", |
| 1903 "test/data/file_version_info_unittest/FileVersionInfoTest2.dll", |
| 1904 "test/data/json/bom_feff.json", |
| 1905 "test/data/pe_image/pe_image_test_32.dll", |
| 1906 "test/data/pe_image/pe_image_test_64.dll", |
| 1907 "test/data/prefs/invalid.json", |
| 1908 "test/data/prefs/read.json", |
| 1909 "test/data/prefs/write.golden.json", |
| 1910 "test/data/serializer_nested_test.json", |
| 1911 "test/data/serializer_test.json", |
| 1912 "test/data/serializer_test_nowhitespace.json", |
| 1913 ] |
| 1914 } |
| 1915 |
| 1881 # Allow more direct string conversions on platforms with native utf8 | 1916 # Allow more direct string conversions on platforms with native utf8 |
| 1882 # strings | 1917 # strings |
| 1883 if (is_mac || is_ios || is_chromeos) { | 1918 if (is_mac || is_ios || is_chromeos) { |
| 1884 defines = [ "SYSTEM_NATIVE_UTF8" ] | 1919 defines = [ "SYSTEM_NATIVE_UTF8" ] |
| 1885 } | 1920 } |
| 1886 | 1921 |
| 1887 if (is_android) { | 1922 if (is_android) { |
| 1888 deps += [ | 1923 deps += [ |
| 1889 ":base_java", | 1924 ":base_java", |
| 1890 ":base_java_unittest_support", | 1925 ":base_java_unittest_support", |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2143 | 2178 |
| 2144 # GYP: //base.gyp:base_java_unittest_support | 2179 # GYP: //base.gyp:base_java_unittest_support |
| 2145 android_library("base_java_unittest_support") { | 2180 android_library("base_java_unittest_support") { |
| 2146 deps = [ | 2181 deps = [ |
| 2147 ":base_java", | 2182 ":base_java", |
| 2148 ] | 2183 ] |
| 2149 java_files = | 2184 java_files = |
| 2150 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2185 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2151 } | 2186 } |
| 2152 } | 2187 } |
| OLD | NEW |