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

Unified Diff: third_party/custom_tabs_client/custom_tabs_client.gyp

Issue 1270403003: customtabs: Move the build files for the sample application to Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | « third_party/custom_tabs_client/common.aidl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/custom_tabs_client/custom_tabs_client.gyp
diff --git a/third_party/custom_tabs_client/custom_tabs_client.gyp b/third_party/custom_tabs_client/custom_tabs_client.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..1294ecbff947f83ccf94db0ab33b2a21a7ec6d42
--- /dev/null
+++ b/third_party/custom_tabs_client/custom_tabs_client.gyp
@@ -0,0 +1,52 @@
+# Copyright (c) 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'custom_tabs_client_example_apk',
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': 'src/Application/src/main/',
+ 'java_in_dir_suffix': 'java/',
+ 'resource_dir': '<(java_in_dir)/res',
+ 'apk_name': 'CustomTabsClientExample',
+ 'run_findbugs': 0,
+ },
+ 'dependencies': [
+ 'custom_tabs_support_lib',
+ ],
+ 'includes': [ '../../build/java_apk.gypi' ],
+ },
+ {
+ 'target_name': 'custom_tabs_support_lib',
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': 'src/customtabs/src/',
+ 'java_in_dir_suffix': '',
+ },
+ 'dependencies': [
+ 'chrome_custom_tabs_service_aidl',
+ '../android_tools/android_tools.gyp:android_support_annotations_javalib',
+ ],
+ 'includes': [ '../../build/java.gypi' ],
+ },
+ {
+ 'target_name': "chrome_custom_tabs_service_aidl",
+ 'type': 'none',
+ 'variables': {
+ 'java_in_dir': 'src/customtabs/src/android/support/customtabs/',
+ 'java_in_dir_suffix': '',
+ # The filename should not end with ".aidl", as it upsets gradle.
+ # 'aidl_interface_file': '<(java_in_dir)/common.aidl.txt',
cjhopman 2015/08/12 22:52:32 Is this comment useful?
Yusuf 2015/08/12 22:54:05 No... Do you mind if I update that with a follow u
+ 'aidl_interface_file': 'common.aidl',
+ },
+ 'sources': [
+ '<(java_in_dir)/ICustomTabsCallback.aidl',
+ '<(java_in_dir)/ICustomTabsService.aidl',
+ ],
+ 'includes': [ '../../build/java_aidl.gypi' ],
+ },
+ ],
+}
« no previous file with comments | « third_party/custom_tabs_client/common.aidl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698