forked from crosswalk-project/crosswalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xwalk_core_library_android.gypi
56 lines (55 loc) · 1.54 KB
/
xwalk_core_library_android.gypi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright (c) 2013 Intel Corporation. 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': 'pack_xwalk_core_library',
'type': 'none',
'dependencies': [
'xwalk_core_library'
],
'actions': [
{
'action_name': 'pack_xwalk_core_library',
'message': 'Packaging XwalkCore Library Project.',
'inputs': [
'<(DEPTH)/xwalk/tools/tar.py',
],
'outputs': [
'<(PRODUCT_DIR)/xwalk_core_library.tar.gz',
'<(PRODUCT_DIR)/pack_xwalk_core_library_intermediate/always_run',
],
'action': [
'python', 'tools/tar.py',
'<(PRODUCT_DIR)/xwalk_core_library'
],
},
],
},
{
'target_name': 'xwalk_core_library',
'type': 'none',
'dependencies': [
'xwalk_core_shell_apk'
],
'actions': [
{
'action_name': 'generate_xwalk_core_library',
'message': 'Generating XwalkCore Library Project.',
'inputs': [
'<(DEPTH)/xwalk/build/android/generate_xwalk_core_library.py',
],
'outputs': [
'<(PRODUCT_DIR)/xwalk_core_library_intermediate/always_run',
],
'action': [
'python', '<(DEPTH)/xwalk/build/android/generate_xwalk_core_library.py',
'-s', '<(DEPTH)',
'-t', '<(PRODUCT_DIR)'
],
},
],
},
],
}