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

Side by Side Diff: webkit/webkit.gyp

Issue 792005: Move devtool resources from webkit_resources.grd to renderer_resources.grd. (Closed)
Patch Set: split Created 10 years, 9 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 | « webkit/tools/test_shell/test_shell_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'includes': [ 6 'includes': [
7 '../third_party/WebKit/WebKit/chromium/features.gypi', 7 '../third_party/WebKit/WebKit/chromium/features.gypi',
8 '../third_party/WebKit/WebKit/chromium/WebKit.gypi', 8 '../third_party/WebKit/WebKit/chromium/WebKit.gypi',
9 '../third_party/WebKit/WebCore/WebCore.gypi', 9 '../third_party/WebKit/WebCore/WebCore.gypi',
10 'support/webkit_support.gypi', 10 'support/webkit_support.gypi',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 '<!@(<(grit_info_cmd) --inputs <(input_path))', 63 '<!@(<(grit_info_cmd) --inputs <(input_path))',
64 ], 64 ],
65 'outputs': [ 65 'outputs': [
66 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', 66 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))',
67 ], 67 ],
68 'action': ['<@(grit_cmd)', 68 'action': ['<@(grit_cmd)',
69 '-i', '<(input_path)', 'build', 69 '-i', '<(input_path)', 'build',
70 '-o', '<(grit_out_dir)'], 70 '-o', '<(grit_out_dir)'],
71 'message': 'Generating resources from <(input_path)', 71 'message': 'Generating resources from <(input_path)',
72 }, 72 },
73 {
74 'action_name': 'devtools_resources',
75 'variables': {
76 'input_path': '../third_party/WebKit/WebKit/chromium/devtools_resour ces.grd',
77 },
78 'inputs': [
79 '<!@(<(grit_info_cmd) --inputs <(input_path))',
80 ],
81 'outputs': [
82 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))',
83 ],
84 'action': ['<@(grit_cmd)',
85 '-i', '<(input_path)', 'build',
86 '-o', '<(grit_out_dir)'],
87 'message': 'Generating resources from <(input_path)',
88 },
73 ], 89 ],
74 'direct_dependent_settings': { 90 'direct_dependent_settings': {
75 'include_dirs': [ 91 'include_dirs': [
76 '<(SHARED_INTERMEDIATE_DIR)/webkit', 92 '<(SHARED_INTERMEDIATE_DIR)/webkit',
77 ], 93 ],
78 }, 94 },
79 'conditions': [ 95 'conditions': [
80 ['OS=="win"', { 96 ['OS=="win"', {
81 'dependencies': ['../build/win/system.gyp:cygwin'], 97 'dependencies': ['../build/win/system.gyp:cygwin'],
82 }], 98 }],
(...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 ], 540 ],
525 }, 541 },
526 ], # targets 542 ], # targets
527 } 543 }
528 544
529 # Local Variables: 545 # Local Variables:
530 # tab-width:2 546 # tab-width:2
531 # indent-tabs-mode:nil 547 # indent-tabs-mode:nil
532 # End: 548 # End:
533 # vim: set expandtab tabstop=2 shiftwidth=2: 549 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698