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

Side by Side Diff: ui/webui/resources/js/compiled_resources.gyp

Issue 599203003: Implement recursive gyp dependencies for Closure Compilation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@J_jsevalcontext
Patch Set: fixed nits, removed i18n_template config Created 6 years, 2 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
« no previous file with comments | « ui/webui/resources/js/chromeos/compiled_resources.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'assert', 7 'target_name': 'assert',
8 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 8 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
9 }, 9 },
10 { 10 {
11 'target_name': 'cr', 11 'target_name': 'cr',
12 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 12 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
13 }, 13 },
14 { 14 {
15 'target_name': 'event_tracker', 15 'target_name': 'event_tracker',
16 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 16 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
17 }, 17 },
18 { 18 {
19 'target_name': 'load_time_data', 19 'target_name': 'load_time_data',
20 'variables': {
21 'depends': [
22 '../../../../third_party/jstemplate/util.js',
23 '../../../../third_party/jstemplate/jsevalcontext.js',
24 '../../../../third_party/jstemplate/jstemplate.js',
25 ],
26 },
20 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 27 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
21 }, 28 },
22 { 29 {
23 'target_name': 'util', 30 'target_name': 'util',
24 'variables': { 31 'variables': {
25 'depends': ['cr.js'], 32 'depends': ['cr.js'],
26 'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'], 33 'externs': ['<(CLOSURE_DIR)/externs/chrome_send_externs.js'],
27 }, 34 },
28 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 35 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
29 }, 36 },
30 { 37 {
31 'target_name': 'parse_html_subset', 38 'target_name': 'parse_html_subset',
32 'variables': { 39 'variables': {
33 'externs': ['<(CLOSURE_DIR)/externs/pending_compiler_externs.js'], 40 'externs': ['<(CLOSURE_DIR)/externs/pending_compiler_externs.js'],
34 }, 41 },
35 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 42 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
36 }, 43 },
37 { 44 {
38 'target_name': 'i18n_template_no_process', 45 'target_name': 'i18n_template_no_process',
39 'variables': { 46 'variables': {
40 'depends': ['load_time_data.js'], 47 'depends': ['compiled_resources.gyp:load_time_data'],
41 }, 48 },
42 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 49 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
43 }, 50 },
44 { 51 {
45 'target_name': 'i18n_template',
46 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
Dan Beam 2014/09/29 23:02:05 this will conflict with: https://codereview.chromi
47 },
48 {
49 'target_name': 'i18n_template2', 52 'target_name': 'i18n_template2',
50 'variables': { 53 'variables': {
51 'depends': ['load_time_data.js'], 54 'depends': ['compiled_resources.gyp:load_time_data'],
52 }, 55 },
53 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 56 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
54 }, 57 },
55 ], 58 ],
56 } 59 }
OLDNEW
« no previous file with comments | « ui/webui/resources/js/chromeos/compiled_resources.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698