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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « third_party/custom_tabs_client/common.aidl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 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 {
6 'targets': [
7 {
8 'target_name': 'custom_tabs_client_example_apk',
9 'type': 'none',
10 'variables': {
11 'java_in_dir': 'src/Application/src/main/',
12 'java_in_dir_suffix': 'java/',
13 'resource_dir': '<(java_in_dir)/res',
14 'apk_name': 'CustomTabsClientExample',
15 'run_findbugs': 0,
16 },
17 'dependencies': [
18 'custom_tabs_support_lib',
19 ],
20 'includes': [ '../../build/java_apk.gypi' ],
21 },
22 {
23 'target_name': 'custom_tabs_support_lib',
24 'type': 'none',
25 'variables': {
26 'java_in_dir': 'src/customtabs/src/',
27 'java_in_dir_suffix': '',
28 },
29 'dependencies': [
30 'chrome_custom_tabs_service_aidl',
31 '../android_tools/android_tools.gyp:android_support_annotations_javalib' ,
32 ],
33 'includes': [ '../../build/java.gypi' ],
34 },
35 {
36 'target_name': "chrome_custom_tabs_service_aidl",
37 'type': 'none',
38 'variables': {
39 'java_in_dir': 'src/customtabs/src/android/support/customtabs/',
40 'java_in_dir_suffix': '',
41 # The filename should not end with ".aidl", as it upsets gradle.
42 # '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
43 'aidl_interface_file': 'common.aidl',
44 },
45 'sources': [
46 '<(java_in_dir)/ICustomTabsCallback.aidl',
47 '<(java_in_dir)/ICustomTabsService.aidl',
48 ],
49 'includes': [ '../../build/java_aidl.gypi' ],
50 },
51 ],
52 }
OLDNEW
« 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