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

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: store depends in list 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
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': 'local_strings', 38 'target_name': 'local_strings',
32 'variables': { 39 'variables': {
33 'externs': ['template_data_externs.js'], 40 'externs': ['template_data_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': 'parse_html_subset', 45 'target_name': 'parse_html_subset',
39 'variables': { 46 'variables': {
40 'externs': ['<(CLOSURE_DIR)/externs/pending_compiler_externs.js'], 47 'externs': ['<(CLOSURE_DIR)/externs/pending_compiler_externs.js'],
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_no_process', 52 'target_name': 'i18n_template_no_process',
46 'variables': { 53 'variables': {
47 'depends': ['load_time_data.js'], 54 'depends': ['compiled_resources.gyp:load_time_data'],
48 }, 55 },
49 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 56 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
50 }, 57 },
51 { 58 {
52 'target_name': 'i18n_template', 59 'target_name': 'i18n_template',
53 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 60 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
54 }, 61 },
55 { 62 {
56 'target_name': 'i18n_template2', 63 'target_name': 'i18n_template2',
57 'variables': { 64 'variables': {
58 'depends': ['load_time_data.js'], 65 'depends': ['compiled_resources.gyp:load_time_data'],
59 }, 66 },
60 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], 67 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
61 }, 68 },
62 ], 69 ],
63 } 70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698