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

Side by Side Diff: chrome/chrome_resources.gyp

Issue 14084008: Boilerplate code to add chrome://syncfs-internals page for debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tzik review #1 Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 6 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html', 7 'about_credits_file': '<(SHARED_INTERMEDIATE_DIR)/about_credits.html',
8 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], 8 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'],
9 }, 9 },
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'chrome_extra_resources', 12 'target_name': 'chrome_extra_resources',
13 'type': 'none', 13 'type': 'none',
14 # These resources end up in resources.pak because they are resources 14 # These resources end up in resources.pak because they are resources
15 # used by internal pages. Putting them in a spearate pak file makes 15 # used by internal pages. Putting them in a separate pak file makes
16 # it easier for us to reference them internally. 16 # it easier for us to reference them internally.
17 'actions': [ 17 'actions': [
18 { 18 {
19 'action_name': 'memory_internals_resources', 19 'action_name': 'memory_internals_resources',
20 'variables': { 20 'variables': {
21 'grit_grd_file': 'browser/resources/memory_internals_resources.grd', 21 'grit_grd_file': 'browser/resources/memory_internals_resources.grd',
22 }, 22 },
23 'includes': [ '../build/grit_action.gypi' ], 23 'includes': [ '../build/grit_action.gypi' ],
24 }, 24 },
25 { 25 {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'includes': [ '../build/grit_action.gypi' ], 73 'includes': [ '../build/grit_action.gypi' ],
74 }, 74 },
75 { 75 {
76 'action_name': 'devtools_discovery_page_resources', 76 'action_name': 'devtools_discovery_page_resources',
77 'variables': { 77 'variables': {
78 'grit_grd_file': 78 'grit_grd_file':
79 'browser/devtools/frontend/devtools_discovery_page_resources. grd', 79 'browser/devtools/frontend/devtools_discovery_page_resources. grd',
80 }, 80 },
81 'includes': [ '../build/grit_action.gypi' ] 81 'includes': [ '../build/grit_action.gypi' ]
82 }, 82 },
83 {
84 'action_name': 'sync_file_system_internals_resources',
85 'variables': {
86 'grit_grd_file': 'browser/resources/sync_file_system_internals_r esources.grd',
87 },
88 'includes': [ '../build/grit_action.gypi' ],
89 },
83 ], 90 ],
84 'copies': [ 91 'copies': [
85 { 92 {
86 'destination': '<(PRODUCT_DIR)/resources/extension/demo', 93 'destination': '<(PRODUCT_DIR)/resources/extension/demo',
87 'files': [ 94 'files': [
88 'browser/resources/extension_resource/demo/library.js', 95 'browser/resources/extension_resource/demo/library.js',
89 ], 96 ],
90 }, 97 },
91 ], 98 ],
92 }], 99 }],
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 '<(generator_path)', 465 '<(generator_path)',
459 'credits', 466 'credits',
460 '<(about_credits_file)', 467 '<(about_credits_file)',
461 ], 468 ],
462 'message': 'Generating about:credits.', 469 'message': 'Generating about:credits.',
463 }, 470 },
464 ], 471 ],
465 }, 472 },
466 ], # targets 473 ], # targets
467 } 474 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698