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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# Copyright (c) 2010 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'includes': [
'../../build/common.gypi',
'../../ceee/common.gypi',
'xpi_file_list.gypi',
],
'variables': {
'version_path': '<(DEPTH)/chrome/VERSION',
},
'conditions': [
[ 'branding == "Chrome"', {
'variables': {
'branding_path':
'<(DEPTH)/chrome/app/theme/google_chrome/BRANDING',
},
}, { # else branding!="Chrome"
'variables': {
'branding_path':
'<(DEPTH)/chrome/app/theme/chromium/BRANDING',
},
}],
],
'targets': [
{
'target_name': 'xpi',
'type': 'none',
'msvs_guid': 'C697F5CD-04EB-4260-95D4-E051258809B2',
'dependencies': [
'create_xpi',
'../ie/plugin/scripting/scripting.gyp:javascript_bindings',
],
'sources': [
'zipfiles.py',
'<(SHARED_INTERMEDIATE_DIR)/ceee_ff.xpi',
'<(SHARED_INTERMEDIATE_DIR)/event_bindings.js',
'<(SHARED_INTERMEDIATE_DIR)/renderer_extension_bindings.js',
'<(version_path)',
'<(branding_path)',
],
'actions': [
{
'action_name': 'append_xpi',
'msvs_cygwin_shell': 0,
'inputs': [
'<@(_sources)',
],
'outputs': [
'$(OutDir)/ceee_ff.xpi',
],
'action': [
'<@(python)',
'$(ProjectDir)\zipfiles.py',
'--config',
'$(ConfigurationName)',
'--input',
'<(SHARED_INTERMEDIATE_DIR)/ceee_ff.xpi',
'--version',
'<(version_path)',
'--branding',
'<(branding_path)',
'--ignore_extensions',
'<(xpi_no_expand_extensions)',
'--output',
'<(_outputs)',
'--path',
'content/us',
'<(SHARED_INTERMEDIATE_DIR)/event_bindings.js',
'<(SHARED_INTERMEDIATE_DIR)/renderer_extension_bindings.js',
],
},
],
},
{
'target_name': 'create_xpi',
'type': 'none',
'sources': [
'zipfiles.py',
'<@(_xpi_files)',
'<@(_xpi_test_files)',
'<(version_path)',
'<(branding_path)',
],
'actions': [
{
'action_name': 'create_xpi',
'msvs_cygwin_shell': 0,
'inputs': [
'<@(_sources)',
],
'outputs': [
'<(SHARED_INTERMEDIATE_DIR)/ceee_ff.xpi',
],
'action': [
# Because gyp automatically wraps all strings below in quotes,
# we need to keep command line arguments separate so that they
# don't get merged together in one quoted string. Below, we want
# -o and >(_outputs) to be seen as two command line arguments, not
# one of the form "-o >(_outputs)".
'<@(python)',
'$(ProjectDir)\zipfiles.py',
'--config',
'$(ConfigurationName)',
'--version',
'<(version_path)',
'--branding',
'<(branding_path)',
'--ignore_extensions',
'<(xpi_no_expand_extensions)',
'--output',
'<(_outputs)',
'<@(_xpi_files)',
'##',
'<@(_xpi_test_files)', # Included only in Debug build config.
],
},
],
},
],
}
|