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

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

Issue 2207323002: [MD History] Factor out a common HistoryListBehavior. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 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 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': 'constants', 7 'target_name': 'constants',
8 'dependencies': [ 8 'dependencies': [
9 '../history/compiled_resources2.gyp:externs', 9 '../history/compiled_resources2.gyp:externs',
10 ], 10 ],
11 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 11 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
12 }, 12 },
13 { 13 {
14 'target_name': 'browser_service', 14 'target_name': 'browser_service',
15 'dependencies': [ 15 'dependencies': [
16 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', 16 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
17 '../history/compiled_resources2.gyp:externs', 17 '../history/compiled_resources2.gyp:externs',
18 ], 18 ],
19 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 19 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
20 }, 20 },
21 { 21 {
22 'target_name': 'grouped_list', 22 'target_name': 'grouped_list',
23 'dependencies': [ 23 'dependencies': [
24 '<(DEPTH)/third_party/polymer/v1_0/components-chromium/iron-collapse/com piled_resources2.gyp:iron-collapse-extracted', 24 '<(DEPTH)/third_party/polymer/v1_0/components-chromium/iron-collapse/com piled_resources2.gyp:iron-collapse-extracted',
25 'constants', 25 'constants',
26 'history_item', 26 'history_item',
27 'history_list_behavior',
27 '../history/compiled_resources2.gyp:externs', 28 '../history/compiled_resources2.gyp:externs',
28 ], 29 ],
29 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 30 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
30 }, 31 },
31 { 32 {
32 'target_name': 'history_item', 33 'target_name': 'history_item',
33 'dependencies': [ 34 'dependencies': [
34 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:icon', 35 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:icon',
35 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data', 36 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
36 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util', 37 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util',
37 'constants', 38 'constants',
38 'browser_service', 39 'browser_service',
39 '../history/compiled_resources2.gyp:externs', 40 '../history/compiled_resources2.gyp:externs',
40 ], 41 ],
41 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 42 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
42 }, 43 },
43 { 44 {
44 'target_name': 'history_list', 45 'target_name': 'history_list',
45 'dependencies': [ 46 'dependencies': [
46 '<(DEPTH)/third_party/polymer/v1_0/components-chromium/iron-list/compile d_resources2.gyp:iron-list-extracted', 47 '<(DEPTH)/third_party/polymer/v1_0/components-chromium/iron-list/compile d_resources2.gyp:iron-list-extracted',
47 '<(DEPTH)/third_party/polymer/v1_0/components-chromium/iron-scroll-thres hold/compiled_resources2.gyp:iron-scroll-threshold-extracted', 48 '<(DEPTH)/third_party/polymer/v1_0/components-chromium/iron-scroll-thres hold/compiled_resources2.gyp:iron-scroll-threshold-extracted',
48 '<(DEPTH)/ui/webui/resources/cr_elements/cr_shared_menu/compiled_resourc es2.gyp:cr_shared_menu', 49 '<(DEPTH)/ui/webui/resources/cr_elements/cr_shared_menu/compiled_resourc es2.gyp:cr_shared_menu',
49 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data', 50 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
50 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util', 51 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util',
51 'constants', 52 'constants',
52 'browser_service', 53 'browser_service',
tsergeant 2016/08/09 23:20:00 Nit: I think you can get rid of this
calamity 2016/08/10 04:25:38 Done.
53 'history_item', 54 'history_item',
55 'history_list_behavior',
54 '../history/compiled_resources2.gyp:externs', 56 '../history/compiled_resources2.gyp:externs',
55 ], 57 ],
56 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 58 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
57 }, 59 },
58 { 60 {
61 'target_name': 'history_list_behavior',
62 'dependencies': [
63 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
64 'browser_service',
65 ],
66 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
67 },
68 {
59 'target_name': 'history_toolbar', 69 'target_name': 'history_toolbar',
60 'dependencies': [ 70 'dependencies': [
61 '<(DEPTH)/ui/webui/resources/cr_elements/cr_toolbar/compiled_resources2. gyp:cr_toolbar', 71 '<(DEPTH)/ui/webui/resources/cr_elements/cr_toolbar/compiled_resources2. gyp:cr_toolbar',
62 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data', 72 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
63 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util', 73 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util',
64 ], 74 ],
65 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 75 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
66 }, 76 },
67 { 77 {
68 'target_name': 'history', 78 'target_name': 'history',
69 'dependencies': [ 79 'dependencies': [
70 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:icon', 80 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:icon',
71 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data', 81 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
72 'constants', 82 'constants',
73 'app', 83 'app',
74 '<(EXTERNS_GYP):chrome_send', 84 '<(EXTERNS_GYP):chrome_send',
75 '../history/compiled_resources2.gyp:externs', 85 '../history/compiled_resources2.gyp:externs',
76 ], 86 ],
77 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 87 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
78 }, 88 },
79 { 89 {
80 'target_name': 'list_container', 90 'target_name': 'list_container',
81 'dependencies': [ 91 'dependencies': [
82 'grouped_list', 92 'grouped_list',
83 'history_list', 93 'history_list',
94 'history_list_behavior',
84 '<(EXTERNS_GYP):chrome_send', 95 '<(EXTERNS_GYP):chrome_send',
85 '../history/compiled_resources2.gyp:externs', 96 '../history/compiled_resources2.gyp:externs',
86 ], 97 ],
87 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 98 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
88 }, 99 },
89 { 100 {
90 'target_name': 'app', 101 'target_name': 'app',
91 'dependencies': [ 102 'dependencies': [
92 # TODO(calamity): Add app-route elements after closure issues are fixed. 103 # TODO(calamity): Add app-route elements after closure issues are fixed.
93 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util', 104 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util',
(...skipping 30 matching lines...) Expand all
124 }, 135 },
125 { 136 {
126 'target_name': 'synced_device_manager', 137 'target_name': 'synced_device_manager',
127 'dependencies': [ 138 'dependencies': [
128 'synced_device_card', 139 'synced_device_card',
129 ], 140 ],
130 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'], 141 'includes': ['../../../../third_party/closure_compiler/compile_js2.gypi'],
131 }, 142 },
132 ], 143 ],
133 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698