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 11 matching lines...) Expand all Loading... |
22 'bookmarks_store', | 22 'bookmarks_store', |
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 '<(EXTERNS_GYP):chrome_extensions', | 30 '<(EXTERNS_GYP):chrome_extensions', |
31 'api_listener', | 31 'api_listener', |
| 32 'router', |
32 'store_client', | 33 'store_client', |
33 ], | 34 ], |
34 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 35 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
35 }, | 36 }, |
36 { | 37 { |
37 'target_name': 'bookmarks_store', | 38 'target_name': 'bookmarks_store', |
38 'dependencies': [ | 39 'dependencies': [ |
39 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', | 40 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', |
40 '<(EXTERNS_GYP):chrome_extensions', | 41 '<(EXTERNS_GYP):chrome_extensions', |
41 'reducers', | 42 'reducers', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'target_name': 'reducers', | 80 'target_name': 'reducers', |
80 'dependencies': [ | 81 'dependencies': [ |
81 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', | 82 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', |
82 'actions', | 83 'actions', |
83 'types', | 84 'types', |
84 ], | 85 ], |
85 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 86 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
86 }, | 87 }, |
87 { | 88 { |
88 'target_name': 'router', | 89 'target_name': 'router', |
| 90 'dependencies': [ |
| 91 'actions', |
| 92 'store_client', |
| 93 ], |
89 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 94 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
90 }, | 95 }, |
91 { | 96 { |
92 'target_name': 'sidebar', | 97 'target_name': 'sidebar', |
93 'dependencies': [ | 98 'dependencies': [ |
94 'store_client', | 99 'store_client', |
95 ], | 100 ], |
96 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], | 101 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], |
97 }, | 102 }, |
98 { | 103 { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 'target_name': 'util', | 135 'target_name': 'util', |
131 'dependencies': [ | 136 'dependencies': [ |
132 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', | 137 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', |
133 '<(EXTERNS_GYP):chrome_extensions', | 138 '<(EXTERNS_GYP):chrome_extensions', |
134 'types', | 139 'types', |
135 ], | 140 ], |
136 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] | 141 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] |
137 } | 142 } |
138 ] | 143 ] |
139 } | 144 } |
OLD | NEW |