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

Side by Side Diff: chrome/chrome.gyp

Issue 7053009: Add chrome://quota-internals/ resources (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: remove test mode and mocks Created 9 years, 6 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 'includes': [ '../build/grit_action.gypi' ], 311 'includes': [ '../build/grit_action.gypi' ],
312 }, 312 },
313 { 313 {
314 'action_name': 'options_resources', 314 'action_name': 'options_resources',
315 'variables': { 315 'variables': {
316 'grit_grd_file': 'browser/resources/options_resources.grd', 316 'grit_grd_file': 'browser/resources/options_resources.grd',
317 }, 317 },
318 'includes': [ '../build/grit_action.gypi' ], 318 'includes': [ '../build/grit_action.gypi' ],
319 }, 319 },
320 { 320 {
321 'action_name': 'quota_internals_resources',
322 'variables': {
323 'grit_grd_file': 'browser/resources/quota_internals_resources.grd',
324 },
325 'includes': [ '../build/grit_action.gypi' ],
326 },
327 {
321 'action_name': 'shared_resources', 328 'action_name': 'shared_resources',
322 'variables': { 329 'variables': {
323 'grit_grd_file': 'browser/resources/shared_resources.grd', 330 'grit_grd_file': 'browser/resources/shared_resources.grd',
324 }, 331 },
325 'includes': [ '../build/grit_action.gypi' ], 332 'includes': [ '../build/grit_action.gypi' ],
326 }, 333 },
327 { 334 {
328 'action_name': 'sync_internals_resources', 335 'action_name': 'sync_internals_resources',
329 'variables': { 336 'variables': {
330 'grit_grd_file': 'browser/resources/sync_internals_resources.grd', 337 'grit_grd_file': 'browser/resources/sync_internals_resources.grd',
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
1241 'actions': [ 1248 'actions': [
1242 { 1249 {
1243 'action_name': 'repack_resources', 1250 'action_name': 'repack_resources',
1244 'variables': { 1251 'variables': {
1245 'pak_inputs': [ 1252 'pak_inputs': [
1246 '<(grit_out_dir)/component_extension_resources.pak', 1253 '<(grit_out_dir)/component_extension_resources.pak',
1247 '<(grit_out_dir)/devtools_frontend_resources.pak', 1254 '<(grit_out_dir)/devtools_frontend_resources.pak',
1248 '<(grit_out_dir)/devtools_resources.pak', 1255 '<(grit_out_dir)/devtools_resources.pak',
1249 '<(grit_out_dir)/options_resources.pak', 1256 '<(grit_out_dir)/options_resources.pak',
1250 '<(grit_out_dir)/net_internals_resources.pak', 1257 '<(grit_out_dir)/net_internals_resources.pak',
1258 '<(grit_out_dir)/quota_internals_resources.pak',
1251 '<(grit_out_dir)/shared_resources.pak', 1259 '<(grit_out_dir)/shared_resources.pak',
1252 '<(grit_out_dir)/sync_internals_resources.pak', 1260 '<(grit_out_dir)/sync_internals_resources.pak',
1253 ], 1261 ],
1254 }, 1262 },
1255 'inputs': [ 1263 'inputs': [
1256 '<(repack_path)', 1264 '<(repack_path)',
1257 '<@(pak_inputs)', 1265 '<@(pak_inputs)',
1258 ], 1266 ],
1259 'outputs': [ 1267 'outputs': [
1260 '<(PRODUCT_DIR)/resources.pak', 1268 '<(PRODUCT_DIR)/resources.pak',
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1668 }], # targets 1676 }], # targets
1669 }], # os_posix == 1 and OS != "mac" 1677 }], # os_posix == 1 and OS != "mac"
1670 ], # 'conditions' 1678 ], # 'conditions'
1671 } 1679 }
1672 1680
1673 # Local Variables: 1681 # Local Variables:
1674 # tab-width:2 1682 # tab-width:2
1675 # indent-tabs-mode:nil 1683 # indent-tabs-mode:nil
1676 # End: 1684 # End:
1677 # vim: set expandtab tabstop=2 shiftwidth=2: 1685 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698