OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
Dan Beam
2016/02/09 18:56:05
don't add this, add a compiled_resources2.gyp inst
Moe
2016/02/10 22:28:09
Done.
| |
4 { | |
5 'targets': [ | |
6 { | |
7 'target_name': 'control_bar', | |
8 'variables': { | |
9 'depends': [ | |
10 '../../../../ui/webui/resources/js/compiled_resources.gyp:cr', | |
11 'control_bar.js', | |
12 ], | |
13 }, | |
14 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], | |
15 }, | |
16 { | |
17 'target_name': 'create_profile', | |
18 'variables': { | |
19 'depends': [ | |
20 '../../../../ui/webui/resources/js/compiled_resources.gyp:cr', | |
21 '../../../../ui/webui/resources/js/compiled_resources.gyp:load_time_da ta', | |
22 '../../../../ui/webui/resources/js/i18n_behavior.js', | |
23 '../../../../ui/webui/resources/js/action_link.js', | |
24 'create_profile.js', | |
25 'profile_api.js', | |
26 ], | |
27 }, | |
28 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], | |
29 }, | |
30 { | |
31 'target_name': 'profile_api', | |
32 'variables': { | |
33 'depends': [ | |
34 '../../../../ui/webui/resources/js/compiled_resources.gyp:cr', | |
35 'profile_api.js', | |
36 ], | |
37 }, | |
38 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], | |
39 }, | |
40 { | |
41 'target_name': 'supervised_user_learn_more', | |
42 'variables': { | |
43 'depends': [ | |
44 'supervised_user_learn_more.js', | |
45 ], | |
46 }, | |
47 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], | |
48 }, | |
49 { | |
50 'target_name': 'user_manager_pages', | |
51 'variables': { | |
52 'depends': [ | |
53 'user_manager_pages.js', | |
54 ], | |
55 }, | |
56 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], | |
57 }, | |
58 { | |
59 'target_name': 'user_manager_tutorial', | |
60 'variables': { | |
61 'depends': [ | |
62 '../../../../ui/webui/resources/js/compiled_resources.gyp:util', | |
63 'user_manager_tutorial.js', | |
64 ], | |
65 }, | |
66 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'], | |
67 } | |
68 ] | |
69 } | |
OLD | NEW |