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

Side by Side Diff: components/safe_browsing_db/android/BUILD.gn

Issue 2622773002: Componentize SafeBrowsingApi{Bridge,Handler} (Closed)
Patch Set: Rebase off master and fix merge conflict Created 3 years, 11 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
OLDNEW
(Empty)
1 # Copyright 2017 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.
vakh (use Gerrit instead) 2017/01/11 22:31:47 nit: empty line here
Nate Fischer 2017/01/11 23:39:17 Done.
4 import("//build/config/android/config.gni")
5 import("//build/config/android/rules.gni")
6 android_library("safe_browsing_java") {
7 deps = [
8 "//base:base_java",
9 "//third_party/android_tools:android_support_annotations_java",
10 ]
11 java_files = [
12 "java/src/org/chromium/components/safe_browsing/SafeBrowsingApiBridge.java",
13 "java/src/org/chromium/components/safe_browsing/SafeBrowsingApiHandler.java" ,
14 ]
15 }
16
17 generate_jni("jni_headers") {
18 sources = [
19 "java/src/org/chromium/components/safe_browsing/SafeBrowsingApiBridge.java",
20 ]
21 jni_package = "components/safe_browsing_db/android"
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698