Chromium Code Reviews| Index: components/safe_browsing_db/android/BUILD.gn |
| diff --git a/components/safe_browsing_db/android/BUILD.gn b/components/safe_browsing_db/android/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2992e50352450e0759e45b9f1c6ec05fd311ef81 |
| --- /dev/null |
| +++ b/components/safe_browsing_db/android/BUILD.gn |
| @@ -0,0 +1,22 @@ |
| +# Copyright 2017 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
|
vakh (use Gerrit instead)
2017/01/11 22:31:47
nit: empty line here
Nate Fischer
2017/01/11 23:39:17
Done.
|
| +import("//build/config/android/config.gni") |
| +import("//build/config/android/rules.gni") |
| +android_library("safe_browsing_java") { |
| + deps = [ |
| + "//base:base_java", |
| + "//third_party/android_tools:android_support_annotations_java", |
| + ] |
| + java_files = [ |
| + "java/src/org/chromium/components/safe_browsing/SafeBrowsingApiBridge.java", |
| + "java/src/org/chromium/components/safe_browsing/SafeBrowsingApiHandler.java", |
| + ] |
| +} |
| + |
| +generate_jni("jni_headers") { |
| + sources = [ |
| + "java/src/org/chromium/components/safe_browsing/SafeBrowsingApiBridge.java", |
| + ] |
| + jni_package = "components/safe_browsing_db/android" |
| +} |