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

Unified Diff: components/service_tab_launcher/BUILD.gn

Issue 1057533005: Make service tab launcher a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/service_tab_launcher.gypi ('k') | components/service_tab_launcher/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/service_tab_launcher/BUILD.gn
diff --git a/components/service_tab_launcher/BUILD.gn b/components/service_tab_launcher/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..aeaea39e4b58d6d41e4bdbcb6f74cfe90047fe49
--- /dev/null
+++ b/components/service_tab_launcher/BUILD.gn
@@ -0,0 +1,38 @@
+# Copyright 2015 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.
+
+import("//build/config/android/rules.gni")
+
+# GYP: //components/service_tab_launcher:service_tab_launcher
+static_library("service_tab_launcher") {
+ sources = [
+ "browser/android/service_tab_launcher.cc",
+ "browser/android/service_tab_launcher.h",
+ "component_jni_registrar.cc",
+ "component_jni_registrar.h",
+ ]
+
+ deps = [
+ ":service_tab_launcher_jni_headers",
+ "//base",
+ "//content/public/browser",
+ ]
+}
+
+# GYP: //components/service_tab_launcher:service_tab_launcher_java
+android_library("service_tab_launcher_java") {
+ deps = [
+ "//base:base_java",
+ "//content/public/android:content_java",
+ ]
+ DEPRECATED_java_in_dir = "android/java/src"
+}
+
+# GYP: //components/service_tab_launcher:service_tab_launcher_jni_headers
+generate_jni("service_tab_launcher_jni_headers") {
+ sources = [
+ "android/java/src/org/chromium/components/service_tab_launcher/ServiceTabLauncher.java",
+ ]
+ jni_package = "service_tab_launcher"
+}
« no previous file with comments | « components/service_tab_launcher.gypi ('k') | components/service_tab_launcher/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698