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

Side by Side Diff: third_party/custom_tabs_client/custom_tabs_client.gyp

Issue 1303023002: Use third_party/custom_tabs_client as the src for customtabs library (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
OLDNEW
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'custom_tabs_client_example_apk', 8 'target_name': 'custom_tabs_client_example_apk',
9 'type': 'none', 9 'type': 'none',
10 'variables': { 10 'variables': {
(...skipping 22 matching lines...) Expand all
33 'includes': [ '../../build/java.gypi' ], 33 'includes': [ '../../build/java.gypi' ],
34 }, 34 },
35 { 35 {
36 'target_name': 'custom_tabs_support_lib', 36 'target_name': 'custom_tabs_support_lib',
37 'type': 'none', 37 'type': 'none',
38 'variables': { 38 'variables': {
39 'java_in_dir': 'src/customtabs/src/', 39 'java_in_dir': 'src/customtabs/src/',
40 'java_in_dir_suffix': '', 40 'java_in_dir_suffix': '',
41 }, 41 },
42 'dependencies': [ 42 'dependencies': [
43 'chrome_custom_tabs_service_aidl', 43 'custom_tabs_service_aidl',
44 '../android_tools/android_tools.gyp:android_support_annotations_javalib' , 44 '../android_tools/android_tools.gyp:android_support_v13_javalib',
Benoit L 2015/08/21 11:20:47 Stupid question: Doesn't this bloat the final .dex
pasko 2015/08/21 11:54:57 content_java already depends on it :( Still a con
45 ], 45 ],
46 'includes': [ '../../build/java.gypi' ], 46 'includes': [ '../../build/java.gypi' ],
47 }, 47 },
48 { 48 {
49 'target_name': "chrome_custom_tabs_service_aidl", 49 'target_name': "custom_tabs_service_aidl",
50 'type': 'none', 50 'type': 'none',
51 'variables': { 51 'variables': {
52 'java_in_dir': 'src/customtabs/src/android/support/customtabs/', 52 'java_in_dir': 'src/customtabs/src/android/support/customtabs/',
53 'java_in_dir_suffix': '', 53 'java_in_dir_suffix': '',
54 # The filename should not end with ".aidl", as it upsets gradle. 54 # The filename should not end with ".aidl", as it upsets gradle.
55 # 'aidl_interface_file': '<(java_in_dir)/common.aidl.txt', 55 # 'aidl_interface_file': '<(java_in_dir)/common.aidl.txt',
56 'aidl_interface_file': 'common.aidl', 56 'aidl_interface_file': 'common.aidl',
57 }, 57 },
58 'sources': [ 58 'sources': [
59 '<(java_in_dir)/ICustomTabsCallback.aidl', 59 '<(java_in_dir)/ICustomTabsCallback.aidl',
60 '<(java_in_dir)/ICustomTabsService.aidl', 60 '<(java_in_dir)/ICustomTabsService.aidl',
61 ], 61 ],
62 'includes': [ '../../build/java_aidl.gypi' ], 62 'includes': [ '../../build/java_aidl.gypi' ],
63 }, 63 },
64 ], 64 ],
65 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698