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

Side by Side Diff: chrome/browser/resources/settings/people_page/compiled_resources2.gyp

Issue 2097673002: Add a settings screen that lets the user choose how they unlock their device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pin-unlock-settings-authenticate
Patch Set: Address comments Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/people_page/people_page.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': 'camera', 7 'target_name': 'camera',
8 'dependencies': [ 8 'dependencies': [
9 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data', 9 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
10 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util', 10 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:util',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 79 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
80 }, 80 },
81 { 81 {
82 'target_name': 'profile_info_browser_proxy', 82 'target_name': 'profile_info_browser_proxy',
83 'dependencies': [ 83 'dependencies': [
84 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr', 84 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:cr',
85 ], 85 ],
86 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 86 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
87 }, 87 },
88 { 88 {
89 'target_name': 'quick_unlock_authenticate',
90 'dependencies': [
91 'quick_unlock_routing_behavior',
92 '<(EXTERNS_GYP):quick_unlock_private',
93 ],
94 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
95 },
96 {
97 'target_name': 'quick_unlock_choose_method',
98 'dependencies': [
99 'quick_unlock_password_detect_behavior',
100 '../prefs/compiled_resources2.gyp:prefs_types',
101 '../prefs/compiled_resources2.gyp:prefs_behavior',
102 '<(EXTERNS_GYP):quick_unlock_private',
103 ],
104 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
105 },
106 {
107 'target_name': 'quick_unlock_routing_behavior',
108 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
109 },
110 {
111 'target_name': 'quick_unlock_password_detect_behavior',
112 'dependencies': [
113 'quick_unlock_routing_behavior',
114 ],
115 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
116 },
117 {
89 'target_name': 'sync_page', 118 'target_name': 'sync_page',
90 'dependencies': [ 119 'dependencies': [
91 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:assert', 120 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:assert',
92 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:i18n_behavior', 121 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:i18n_behavior',
93 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data', 122 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:load_time_data',
94 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:web_ui_listener_ behavior', 123 '<(DEPTH)/ui/webui/resources/js/compiled_resources2.gyp:web_ui_listener_ behavior',
95 '../settings_page/compiled_resources2.gyp:settings_animated_pages', 124 '../settings_page/compiled_resources2.gyp:settings_animated_pages',
96 'sync_browser_proxy', 125 'sync_browser_proxy',
97 ], 126 ],
98 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 127 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
(...skipping 24 matching lines...) Expand all
123 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 152 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
124 }, 153 },
125 { 154 {
126 'target_name': 'users_page', 155 'target_name': 'users_page',
127 'dependencies': [ 156 'dependencies': [
128 'user_list', 157 'user_list',
129 'users_add_user_dialog', 158 'users_add_user_dialog',
130 ], 159 ],
131 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '], 160 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
132 }, 161 },
133 {
134 'target_name': 'quick_unlock_routing_behavior',
135 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
136 },
137 {
138 'target_name': 'quick_unlock_authenticate',
139 'dependencies': [
140 'quick_unlock_routing_behavior',
141 '<(EXTERNS_GYP):quick_unlock_private',
142 ],
143 'includes': ['../../../../../third_party/closure_compiler/compile_js2.gypi '],
144 },
145 ], 162 ],
146 } 163 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/people_page/people_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698