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

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

Issue 1293313004: Fix build files and roll custom_tabs_client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix line overflow 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/README.chromium ('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
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': {
11 'java_in_dir': 'src/Application/src/main/', 11 'java_in_dir': 'src/Application/src/main/',
12 'java_in_dir_suffix': 'java/', 12 'java_in_dir_suffix': 'java/',
13 'resource_dir': '<(java_in_dir)/res', 13 'resource_dir': '<(java_in_dir)/res',
14 'apk_name': 'CustomTabsClientExample', 14 'apk_name': 'CustomTabsClientExample',
15 'run_findbugs': 0, 15 'run_findbugs': 0,
16 }, 16 },
17 'dependencies': [ 17 'dependencies': [
18 'custom_tabs_support_lib', 18 'custom_tabs_support_lib',
19 'custom_tabs_client_shared_lib',
20 ],
21 'includes': [ '../../build/java_apk.gypi' ],
22 },
23 {
24 'target_name': 'custom_tabs_client_shared_lib',
25 'type': 'none',
26 'variables': {
27 'java_in_dir': 'src/shared/src/main/java/org/chromium/customtabsclient/s hared/',
28 'java_in_dir_suffix': '',
29 },
30 'dependencies': [
31 'custom_tabs_support_lib',
19 ], 32 ],
20 'includes': [ '../../build/java_apk.gypi' ], 33 'includes': [ '../../build/java.gypi' ],
21 }, 34 },
22 { 35 {
23 'target_name': 'custom_tabs_support_lib', 36 'target_name': 'custom_tabs_support_lib',
24 'type': 'none', 37 'type': 'none',
25 'variables': { 38 'variables': {
26 'java_in_dir': 'src/customtabs/src/', 39 'java_in_dir': 'src/customtabs/src/',
27 'java_in_dir_suffix': '', 40 'java_in_dir_suffix': '',
28 }, 41 },
29 'dependencies': [ 42 'dependencies': [
30 'chrome_custom_tabs_service_aidl', 43 'chrome_custom_tabs_service_aidl',
(...skipping 12 matching lines...) Expand all
43 'aidl_interface_file': 'common.aidl', 56 'aidl_interface_file': 'common.aidl',
44 }, 57 },
45 'sources': [ 58 'sources': [
46 '<(java_in_dir)/ICustomTabsCallback.aidl', 59 '<(java_in_dir)/ICustomTabsCallback.aidl',
47 '<(java_in_dir)/ICustomTabsService.aidl', 60 '<(java_in_dir)/ICustomTabsService.aidl',
48 ], 61 ],
49 'includes': [ '../../build/java_aidl.gypi' ], 62 'includes': [ '../../build/java_aidl.gypi' ],
50 }, 63 },
51 ], 64 ],
52 } 65 }
OLDNEW
« no previous file with comments | « third_party/custom_tabs_client/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698