OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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': 'actions', | 7 'target_name': 'actions', |
8 'dependencies': [ | 8 'dependencies': [ |
9 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', | 9 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', |
10 '<(EXTERNS_GYP):chrome_extensions', | 10 '<(EXTERNS_GYP):chrome_extensions', |
(...skipping 12 matching lines...) Expand all Loading... |
23 'util', | 23 'util', |
24 ], | 24 ], |
25 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 25 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
26 }, | 26 }, |
27 { | 27 { |
28 'target_name': 'app', | 28 'target_name': 'app', |
29 'dependencies': [ | 29 'dependencies': [ |
30 '<(DEPTH)/ui/webui/resources/js/cr/ui/compiled_resources2.gyp:splitter', | 30 '<(DEPTH)/ui/webui/resources/js/cr/ui/compiled_resources2.gyp:splitter', |
31 '<(EXTERNS_GYP):chrome_extensions', | 31 '<(EXTERNS_GYP):chrome_extensions', |
32 'api_listener', | 32 'api_listener', |
| 33 'dnd_manager', |
33 'store_client', | 34 'store_client', |
34 ], | 35 ], |
35 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 36 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
36 }, | 37 }, |
37 { | 38 { |
38 'target_name': 'bookmarks_store', | 39 'target_name': 'bookmarks_store', |
39 'dependencies': [ | 40 'dependencies': [ |
40 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', | 41 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', |
41 '<(EXTERNS_GYP):chrome_extensions', | 42 '<(EXTERNS_GYP):chrome_extensions', |
42 'reducers', | 43 'reducers', |
43 'types', | 44 'types', |
44 ], | 45 ], |
45 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] | 46 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] |
46 }, | 47 }, |
47 { | 48 { |
| 49 'target_name': 'dnd_manager', |
| 50 'dependencies': [ |
| 51 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', |
| 52 '<(EXTERNS_GYP):bookmark_manager_private', |
| 53 '<(EXTERNS_GYP):metrics_private', |
| 54 'bookmarks_store', |
| 55 'types', |
| 56 ], |
| 57 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] |
| 58 }, |
| 59 { |
48 'target_name': 'folder_node', | 60 'target_name': 'folder_node', |
49 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 61 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
50 'dependencies': [ | 62 'dependencies': [ |
51 '<(EXTERNS_GYP):chrome_extensions', | 63 '<(EXTERNS_GYP):chrome_extensions', |
52 'actions', | 64 'actions', |
53 'store_client', | 65 'store_client', |
54 ], | 66 ], |
55 }, | 67 }, |
56 { | 68 { |
57 'target_name': 'item', | 69 'target_name': 'item', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 'dependencies': [ | 130 'dependencies': [ |
119 '<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resourc
es2.gyp:cr_action_menu', | 131 '<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resourc
es2.gyp:cr_action_menu', |
120 '<(DEPTH)/ui/webui/resources/cr_elements/cr_toolbar/compiled_resources2.
gyp:cr_toolbar', | 132 '<(DEPTH)/ui/webui/resources/cr_elements/cr_toolbar/compiled_resources2.
gyp:cr_toolbar', |
121 '<(EXTERNS_GYP):chrome_extensions', | 133 '<(EXTERNS_GYP):chrome_extensions', |
122 'store_client', | 134 'store_client', |
123 ], | 135 ], |
124 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 136 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
125 }, | 137 }, |
126 { | 138 { |
127 'target_name': 'types', | 139 'target_name': 'types', |
| 140 'dependencies': [ |
| 141 '<(EXTERNS_GYP):chrome_extensions', |
| 142 ], |
128 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] | 143 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] |
129 }, | 144 }, |
130 { | 145 { |
131 'target_name': 'util', | 146 'target_name': 'util', |
132 'dependencies': [ | 147 'dependencies': [ |
133 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', | 148 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', |
134 '<(EXTERNS_GYP):chrome_extensions', | 149 '<(EXTERNS_GYP):chrome_extensions', |
135 'types', | 150 'types', |
136 ], | 151 ], |
137 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] | 152 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] |
138 } | 153 } |
139 ] | 154 ] |
140 } | 155 } |
OLD | NEW |