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
|
# Copyright 2015 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': 'action_link',
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'assert',
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'cr',
'dependencies': [
'<(EXTERNS_GYP):chrome_send',
'assert',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'load_time_data',
'dependencies': ['<(DEPTH)/third_party/jstemplate/compiled_resources2.gyp:jstemplate'],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'event_tracker',
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'util',
'dependencies': [
'<(EXTERNS_GYP):chrome_send',
'cr',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'parse_html_subset',
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'i18n_template_no_process',
'dependencies': [
'load_time_data',
'<(EXTERNS_GYP):pending_compiler_externs',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'i18n_template',
'dependencies': [
'load_time_data',
# Ideally, <include> would automatically import externs as well, but
# it current doesn't and that sounds hard. Let's just kill <include>.
'<(EXTERNS_GYP):pending_compiler_externs',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
],
}
|