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

Side by Side Diff: base/BUILD.gn

Issue 1697603002: Use LeakCanary for all Android Service instances Base URL: https://chromium.googlesource.com/chromium/src.git@leak-canary-3
Patch Set: Created 4 years, 10 months 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
« no previous file with comments | « no previous file | base/android/java/src/org/chromium/base/LeakCanaryUtil.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1942 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | base/android/java/src/org/chromium/base/LeakCanaryUtil.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698