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

Side by Side Diff: web_apks/minting_example/minting_example.gyp

Issue 1888773004: 🙅 Bind a WebAPK to its "host" browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add template apk Created 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 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 'variables': { 5 'variables': {
6 'package_name': 'minting_example_public_apk', 6 'package_name': 'minting_example_public_apk',
7 'manifest_package_minting': 'org.chromium.minting', 7 'manifest_package_minting': 'org.chromium.minting',
8 'manifest_package_minting_origin%': '', 8 'manifest_package_minting_origin%': '',
9 'minting_example_apk_manifest': '<(SHARED_INTERMEDIATE_DIR)/minting_example_ apk_manifest/AndroidManifest.xml', 9 'minting_example_apk_manifest': '<(SHARED_INTERMEDIATE_DIR)/minting_example_ apk_manifest/AndroidManifest.xml',
10 'use_unpublished_apis%': 0, 10 'use_unpublished_apis%': 0,
11 'host_url%': '', 11 'host_url%': '',
12 'runtime_host%': 'com.google.android.apps.chrome',
12 'mac%': '', 13 'mac%': '',
13 }, 14 },
14 'targets': [ 15 'targets': [
15 { 16 {
16 # GN: //web_apks/minting_example:minting_example_manifest 17 # GN: //web_apks/minting_example:minting_example_manifest
17 'target_name': 'minting_example_manifest', 18 'target_name': 'minting_example_manifest',
18 'type': 'none', 19 'type': 'none',
19 'variables': { 20 'variables': {
20 'jinja_inputs': ['../../web_apks/minting_example/AndroidManifest.xml'], 21 'jinja_inputs': ['../../web_apks/minting_example/AndroidManifest.xml'],
21 'jinja_output': '<(minting_example_apk_manifest)', 22 'jinja_output': '<(minting_example_apk_manifest)',
22 'jinja_variables': [ 23 'jinja_variables': [
23 'manifest_package=<(manifest_package_minting).<(manifest_package_minti ng_origin)', 24 'manifest_package=<(manifest_package_minting).<(manifest_package_minti ng_origin)',
24 'min_sdk_version=16', 25 'min_sdk_version=16',
25 'target_sdk_version=23', 26 'target_sdk_version=23',
26 'host_url=<(host_url)', 27 'host_url=<(host_url)',
28 'runtime_host=<(runtime_host)',
27 'mac=<(mac)', 29 'mac=<(mac)',
28 ], 30 ],
29 }, 31 },
30 'includes': [ '../../build/android/jinja_template.gypi' ], 32 'includes': [ '../../build/android/jinja_template.gypi' ],
31 }, 33 },
32 { 34 {
33 # GN: //web_apks/minting_exmaple:minting_example_apk 35 # GN: //web_apks/minting_exmaple:minting_example_apk
34 'target_name': 'minting_example_apk', 36 'target_name': 'minting_example_apk',
35 'type': 'none', 37 'type': 'none',
36 'variables': { 38 'variables': {
(...skipping 27 matching lines...) Expand all
64 'aidl_interface_file': '<(java_in_dir)/src/org/chromium/minting/common.a idl', 66 'aidl_interface_file': '<(java_in_dir)/src/org/chromium/minting/common.a idl',
65 }, 67 },
66 'sources': [ 68 'sources': [
67 '<(java_in_dir)/src/org/chromium/minting/IMintedApiCallback.aidl', 69 '<(java_in_dir)/src/org/chromium/minting/IMintedApiCallback.aidl',
68 '<(java_in_dir)/src/org/chromium/minting/IMintedApi.aidl', 70 '<(java_in_dir)/src/org/chromium/minting/IMintedApi.aidl',
69 ], 71 ],
70 'includes': [ '../../build/java_aidl.gypi' ], 72 'includes': [ '../../build/java_aidl.gypi' ],
71 } 73 }
72 ], 74 ],
73 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698