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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_bookmarks/compiled_resources2.gyp
diff --git a/chrome/browser/resources/md_bookmarks/compiled_resources2.gyp b/chrome/browser/resources/md_bookmarks/compiled_resources2.gyp
index a263751835f53074e49e2e245d859b152608167d..5794bc2992cfa4d6f65e04e54e03558183329a2b 100644
--- a/chrome/browser/resources/md_bookmarks/compiled_resources2.gyp
+++ b/chrome/browser/resources/md_bookmarks/compiled_resources2.gyp
@@ -4,10 +4,32 @@
{
'targets': [
{
+ 'target_name': 'actions',
+ 'dependencies': [
+ '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
+ '<(EXTERNS_GYP):chrome_extensions',
+ 'util',
+ 'types',
+ ],
+ 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
+ },
+ {
+ 'target_name': 'api_listener',
+ 'dependencies': [
+ '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
+ '<(EXTERNS_GYP):chrome_extensions',
+ 'store',
+ 'util',
+ ],
+ 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
+ },
+ {
'target_name': 'app',
'dependencies': [
'<(EXTERNS_GYP):chrome_extensions',
- 'store'
+ 'api_listener',
+ 'store',
+ 'store_client',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
@@ -16,7 +38,8 @@
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
'dependencies': [
'<(EXTERNS_GYP):chrome_extensions',
- 'store'
+ 'actions',
+ 'store_client'
],
},
{
@@ -24,6 +47,8 @@
'dependencies': [
'<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:icon',
'<(EXTERNS_GYP):chrome_extensions',
+ 'actions',
+ 'store_client',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
@@ -32,28 +57,53 @@
'dependencies': [
'<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resources2.gyp:cr_action_menu',
'<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
- '<(EXTERNS_GYP):bookmark_manager_private',
- '<(EXTERNS_GYP):chrome_extensions',
- 'item',
+ '<(EXTERNS_GYP):bookmark_manager_private',
+ '<(EXTERNS_GYP):chrome_extensions',
+ 'store_client',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'router',
+ 'dependencies': [
+ 'actions',
+ 'store_client',
+ ],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'sidebar',
'dependencies': [
'folder_node',
+ 'store_client',
+ ],
+ 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
+ },
+ {
+ 'target_name': 'reducers',
+ 'dependencies': [
+ '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
+ 'actions',
+ 'types',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
{
'target_name': 'store',
'dependencies': [
+ '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
'<(EXTERNS_GYP):chrome_extensions',
- 'router',
+ 'reducers',
+ 'types',
+ 'util',
+ ],
+ 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
+ },
+ {
+ 'target_name': 'store_client',
+ 'dependencies': [
+ '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
+ 'store',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
},
@@ -63,8 +113,22 @@
'<(DEPTH)/ui/webui/resources/cr_elements/cr_action_menu/compiled_resources2.gyp:cr_action_menu',
'<(DEPTH)/ui/webui/resources/cr_elements/cr_toolbar/compiled_resources2.gyp:cr_toolbar',
'<(EXTERNS_GYP):chrome_extensions',
+ 'store_client',
],
'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
},
+ {
+ 'target_name': 'types',
+ 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
+ },
+ {
+ 'target_name': 'util',
+ 'dependencies': [
+ '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
+ '<(EXTERNS_GYP):chrome_extensions',
+ 'types',
+ ],
+ 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi']
+ }
]
}
« 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