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

Side by Side Diff: chrome/browser/resources/md_bookmarks/compiled_resources2.gyp

Issue 2704983002: MD Bookmarks: Proof-of-concept reimplementation of data storage/binding layer (Closed)
Patch Set: Add doc comments Created 3 years, 9 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 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',
8 'dependencies': [
9 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
10 '<(EXTERNS_GYP):chrome_extensions',
11 'util',
12 'types',
13 ],
14 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
15 },
16 {
17 'target_name': 'api_listener',
18 'dependencies': [
19 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
20 '<(EXTERNS_GYP):chrome_extensions',
21 'store',
22 'util',
23 ],
24 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
25 },
26 {
7 'target_name': 'app', 27 'target_name': 'app',
8 'dependencies': [ 28 'dependencies': [
9 '<(EXTERNS_GYP):chrome_extensions', 29 '<(EXTERNS_GYP):chrome_extensions',
10 'store' 30 'api_listener',
31 'store',
32 'store_client',
11 ], 33 ],
12 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 34 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
13 }, 35 },
14 { 36 {
15 'target_name': 'folder_node', 37 'target_name': 'folder_node',
16 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 38 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
17 'dependencies': [ 39 'dependencies': [
18 '<(EXTERNS_GYP):chrome_extensions', 40 '<(EXTERNS_GYP):chrome_extensions',
19 'store' 41 'actions',
42 'store_client'
20 ], 43 ],
21 }, 44 },
22 { 45 {
23 'target_name': 'item', 46 'target_name': 'item',
24 'dependencies': [ 47 'dependencies': [
25 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:icon', 48 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:icon',
26 '<(EXTERNS_GYP):chrome_extensions', 49 '<(EXTERNS_GYP):chrome_extensions',
50 'actions',
51 'store_client',
27 ], 52 ],
28 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 53 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
29 }, 54 },
30 { 55 {
31 'target_name': 'list', 56 'target_name': 'list',
32 'dependencies': [ 57 'dependencies': [
33 '<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resourc es2.gyp:cr_action_menu', 58 '<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resourc es2.gyp:cr_action_menu',
34 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data', 59 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
35 » '<(EXTERNS_GYP):bookmark_manager_private', 60 '<(EXTERNS_GYP):bookmark_manager_private',
36 » '<(EXTERNS_GYP):chrome_extensions', 61 '<(EXTERNS_GYP):chrome_extensions',
37 'item', 62 'store_client',
38 ], 63 ],
39 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 64 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
40 }, 65 },
41 { 66 {
42 'target_name': 'router', 67 'target_name': 'router',
68 'dependencies': [
69 'actions',
70 'store_client',
71 ],
43 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 72 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
44 }, 73 },
45 { 74 {
46 'target_name': 'sidebar', 75 'target_name': 'sidebar',
47 'dependencies': [ 76 'dependencies': [
48 'folder_node', 77 'folder_node',
78 'store_client',
79 ],
80 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
81 },
82 {
83 'target_name': 'reducers',
84 'dependencies': [
85 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
86 'actions',
87 'types',
49 ], 88 ],
50 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 89 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
51 }, 90 },
52 { 91 {
53 'target_name': 'store', 92 'target_name': 'store',
54 'dependencies': [ 93 'dependencies': [
94 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
55 '<(EXTERNS_GYP):chrome_extensions', 95 '<(EXTERNS_GYP):chrome_extensions',
56 'router', 96 'reducers',
97 'types',
98 'util',
57 ], 99 ],
58 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'] 100 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
59 }, 101 },
102 {
103 'target_name': 'store_client',
104 'dependencies': [
105 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
106 'store',
107 ],
108 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
109 },
60 { 110 {
61 'target_name': 'toolbar', 111 'target_name': 'toolbar',
62 'dependencies': [ 112 'dependencies': [
63 '<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resourc es2.gyp:cr_action_menu', 113 '<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resourc es2.gyp:cr_action_menu',
64 '<(DEPTH)/ui/webui/resources/cr_elements/cr_toolbar/compiled_resources2. gyp:cr_toolbar', 114 '<(DEPTH)/ui/webui/resources/cr_elements/cr_toolbar/compiled_resources2. gyp:cr_toolbar',
65 '<(EXTERNS_GYP):chrome_extensions', 115 '<(EXTERNS_GYP):chrome_extensions',
116 'store_client',
66 ], 117 ],
67 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 118 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
68 }, 119 },
120 {
121 'target_name': 'types',
122 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
123 },
124 {
125 'target_name': 'util',
126 'dependencies': [
127 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
128 '<(EXTERNS_GYP):chrome_extensions',
129 'types',
130 ],
131 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
132 }
69 ] 133 ]
70 } 134 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/app.js ('k') | chrome/browser/resources/md_bookmarks/folder_node.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698