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
|
# Copyright 2014 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.
{
'targets': [
{
'target_name': 'assert',
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
'target_name': 'cr',
'variables': {
'externs': ['../../../../third_party/closure_compiler/externs/chrome_send.js'],
},
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
'target_name': 'event_tracker',
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
'target_name': 'load_time_data',
'variables': {
'depends': [
'../../../../third_party/jstemplate/util.js',
'../../../../third_party/jstemplate/jsevalcontext.js',
'../../../../third_party/jstemplate/jstemplate.js',
],
},
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
'target_name': 'util',
'variables': {
'depends': ['compiled_resources.gyp:cr'],
# TODO(jlklein): Get <(VARIABLES) in transient externs/depends working.
'externs': ['../../../../third_party/closure_compiler/externs/chrome_send.js'],
},
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
'target_name': 'parse_html_subset',
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
'target_name': 'i18n_template_no_process',
'variables': {
'depends': ['compiled_resources.gyp:load_time_data'],
},
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
{
'target_name': 'i18n_template',
'variables': {
'depends': ['compiled_resources.gyp:load_time_data'],
},
'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
},
],
}
|