Peter Kotwicz | 2b66833 | 2020-07-13 22:11:08 | [diff] [blame] | 1 | # Copyright 2020 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | import("//build/config/android/rules.gni") |
| 6 | |
| 7 | android_library("java") { |
| 8 | sources = [ |
| 9 | "java/src/org/chromium/components/strictmode/KnownViolations.java", |
| 10 | "java/src/org/chromium/components/strictmode/ReflectiveThreadStrictModeInterceptor.java", |
| 11 | "java/src/org/chromium/components/strictmode/StrictModePolicyViolation.java", |
| 12 | "java/src/org/chromium/components/strictmode/ThreadStrictModeInterceptor.java", |
Peter Kotwicz | 2b66833 | 2020-07-13 22:11:08 | [diff] [blame] | 13 | "java/src/org/chromium/components/strictmode/Violation.java", |
| 14 | ] |
Peter Wen | 30701f3e | 2020-07-22 20:44:15 | [diff] [blame] | 15 | deps = [ |
| 16 | "//base:base_java", |
Peter Kotwicz | 0409372 | 2021-02-13 00:35:37 | [diff] [blame] | 17 | "//third_party/androidx:androidx_annotation_annotation_java", |
Peter Wen | 30701f3e | 2020-07-22 20:44:15 | [diff] [blame] | 18 | ] |
Peter Kotwicz | 2b66833 | 2020-07-13 22:11:08 | [diff] [blame] | 19 | } |
| 20 | |
| 21 | android_library("javatests") { |
| 22 | testonly = true |
| 23 | sources = [ "javatests/src/org/chromium/components/strictmode/ThreadStrictModeInterceptorTest.java" ] |
| 24 | deps = [ |
| 25 | ":java", |
| 26 | "//base:base_java_test_support", |
| 27 | "//content/public/test/android:content_java_test_support", |
Peter Kotwicz | 2b66833 | 2020-07-13 22:11:08 | [diff] [blame] | 28 | "//third_party/android_support_test_runner:runner_java", |
Peter Kotwicz | 0409372 | 2021-02-13 00:35:37 | [diff] [blame] | 29 | "//third_party/androidx:androidx_appcompat_appcompat_java", |
| 30 | "//third_party/androidx:androidx_core_core_java", |
| 31 | "//third_party/androidx:androidx_test_runner_java", |
Peter Kotwicz | 2b66833 | 2020-07-13 22:11:08 | [diff] [blame] | 32 | "//third_party/junit", |
| 33 | ] |
| 34 | } |