OLD | NEW |
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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
10 },{ | 10 },{ |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 ], | 52 ], |
53 'outputs': [ | 53 'outputs': [ |
54 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', | 54 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', |
55 ], | 55 ], |
56 'action': ['<@(grit_cmd)', | 56 'action': ['<@(grit_cmd)', |
57 '-i', '<(input_path)', 'build', | 57 '-i', '<(input_path)', 'build', |
58 '-o', '<(grit_out_dir)', | 58 '-o', '<(grit_out_dir)', |
59 '<@(grit_defines)'], | 59 '<@(grit_defines)'], |
60 'message': 'Generating resources from <(input_path)', | 60 'message': 'Generating resources from <(input_path)', |
61 }, | 61 }, |
| 62 { |
| 63 'action_name': 'webkit_chromium_audio_resources', |
| 64 'variables': { |
| 65 'input_path': '<(webkit_src_dir)/Source/WebKit/chromium/WebKitAudio.
grd', |
| 66 }, |
| 67 'inputs': [ |
| 68 '<!@(<(grit_info_cmd) --inputs <(input_path))', |
| 69 ], |
| 70 'outputs': [ |
| 71 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', |
| 72 ], |
| 73 'action': ['<@(grit_cmd)', |
| 74 '-i', '<(input_path)', 'build', |
| 75 '-o', '<(grit_out_dir)', |
| 76 '<@(grit_defines)'], |
| 77 'message': 'Generating resources from <(input_path)', |
| 78 }, |
62 ], | 79 ], |
63 'direct_dependent_settings': { | 80 'direct_dependent_settings': { |
64 'include_dirs': [ | 81 'include_dirs': [ |
65 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 82 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
66 ], | 83 ], |
67 }, | 84 }, |
68 'conditions': [ | 85 'conditions': [ |
69 ['OS=="win"', { | 86 ['OS=="win"', { |
70 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], | 87 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], |
71 }], | 88 }], |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 }], | 541 }], |
525 ['inside_chromium_build==0', { | 542 ['inside_chromium_build==0', { |
526 'dependencies': [ | 543 'dependencies': [ |
527 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 544 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
528 ], | 545 ], |
529 }], | 546 }], |
530 ], | 547 ], |
531 }, | 548 }, |
532 ], | 549 ], |
533 } | 550 } |
OLD | NEW |