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

Side by Side Diff: chrome/browser/resources/md_user_manager/compiled_resources.gyp

Issue 1630903002: material design user manager with create profile flow (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed tommy's comments #2 Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
Dan Beam 2016/02/09 18:56:05 don't add this, add a compiled_resources2.gyp inst
Moe 2016/02/10 22:28:09 Done.
4 {
5 'targets': [
6 {
7 'target_name': 'control_bar',
8 'variables': {
9 'depends': [
10 '../../../../ui/webui/resources/js/compiled_resources.gyp:cr',
11 'control_bar.js',
12 ],
13 },
14 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
15 },
16 {
17 'target_name': 'create_profile',
18 'variables': {
19 'depends': [
20 '../../../../ui/webui/resources/js/compiled_resources.gyp:cr',
21 '../../../../ui/webui/resources/js/compiled_resources.gyp:load_time_da ta',
22 '../../../../ui/webui/resources/js/i18n_behavior.js',
23 '../../../../ui/webui/resources/js/action_link.js',
24 'create_profile.js',
25 'profile_api.js',
26 ],
27 },
28 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
29 },
30 {
31 'target_name': 'profile_api',
32 'variables': {
33 'depends': [
34 '../../../../ui/webui/resources/js/compiled_resources.gyp:cr',
35 'profile_api.js',
36 ],
37 },
38 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
39 },
40 {
41 'target_name': 'supervised_user_learn_more',
42 'variables': {
43 'depends': [
44 'supervised_user_learn_more.js',
45 ],
46 },
47 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
48 },
49 {
50 'target_name': 'user_manager_pages',
51 'variables': {
52 'depends': [
53 'user_manager_pages.js',
54 ],
55 },
56 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
57 },
58 {
59 'target_name': 'user_manager_tutorial',
60 'variables': {
61 'depends': [
62 '../../../../ui/webui/resources/js/compiled_resources.gyp:util',
63 'user_manager_tutorial.js',
64 ],
65 },
66 'includes': ['../../../../third_party/closure_compiler/compile_js.gypi'],
67 }
68 ]
69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698