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 1942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1953 android_library("base_java") { | 1953 android_library("base_java") { |
1954 srcjar_deps = [ | 1954 srcjar_deps = [ |
1955 ":base_android_java_enums_srcjar", | 1955 ":base_android_java_enums_srcjar", |
1956 ":base_multidex_gen", | 1956 ":base_multidex_gen", |
1957 ":base_native_libraries_gen", | 1957 ":base_native_libraries_gen", |
1958 ] | 1958 ] |
1959 | 1959 |
1960 deps = [ | 1960 deps = [ |
1961 "//third_party/android_tools:android_support_multidex_java", | 1961 "//third_party/android_tools:android_support_multidex_java", |
1962 "//third_party/jsr-305:jsr_305_javalib", | 1962 "//third_party/jsr-305:jsr_305_javalib", |
| 1963 "//third_party/leakcanary:leakcanary_java", |
1963 ] | 1964 ] |
1964 | 1965 |
1965 DEPRECATED_java_in_dir = "android/java/src" | 1966 DEPRECATED_java_in_dir = "android/java/src" |
1966 | 1967 |
1967 # New versions of ChromiumMultiDex.java and NativeLibraries.java | 1968 # New versions of ChromiumMultiDex.java and NativeLibraries.java |
1968 # (with the actual correct values) will be created when creating an apk. | 1969 # (with the actual correct values) will be created when creating an apk. |
1969 jar_excluded_patterns = [ | 1970 jar_excluded_patterns = [ |
1970 "*/ChromiumMultiDex.class", | 1971 "*/ChromiumMultiDex.class", |
1971 "*/NativeLibraries.class", | 1972 "*/NativeLibraries.class", |
1972 "*/NativeLibraries##*.class", | 1973 "*/NativeLibraries##*.class", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2050 | 2051 |
2051 # GYP: //base.gyp:base_java_unittest_support | 2052 # GYP: //base.gyp:base_java_unittest_support |
2052 android_library("base_java_unittest_support") { | 2053 android_library("base_java_unittest_support") { |
2053 deps = [ | 2054 deps = [ |
2054 ":base_java", | 2055 ":base_java", |
2055 ] | 2056 ] |
2056 java_files = | 2057 java_files = |
2057 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2058 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2058 } | 2059 } |
2059 } | 2060 } |
OLD | NEW |