| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 '<!@(<(grit_info_cmd) --inputs <(input_path))', | 49 '<!@(<(grit_info_cmd) --inputs <(input_path))', |
| 50 ], | 50 ], |
| 51 'outputs': [ | 51 'outputs': [ |
| 52 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', | 52 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', |
| 53 ], | 53 ], |
| 54 'action': ['<@(grit_cmd)', | 54 'action': ['<@(grit_cmd)', |
| 55 '-i', '<(input_path)', 'build', | 55 '-i', '<(input_path)', 'build', |
| 56 '-o', '<(grit_out_dir)'], | 56 '-o', '<(grit_out_dir)'], |
| 57 'message': 'Generating resources from <(input_path)', | 57 'message': 'Generating resources from <(input_path)', |
| 58 }, | 58 }, |
| 59 { |
| 60 'action_name': 'webkit_chromium_audio_resources', |
| 61 'variables': { |
| 62 'input_path': '<(webkit_src_dir)/WebKit/chromium/WebKitAudio.grd', |
| 63 }, |
| 64 'inputs': [ |
| 65 '<!@(<(grit_info_cmd) --inputs <(input_path))', |
| 66 ], |
| 67 'outputs': [ |
| 68 '<!@(<(grit_info_cmd) --outputs \'<(grit_out_dir)\' <(input_path))', |
| 69 ], |
| 70 'action': ['<@(grit_cmd)', |
| 71 '-i', '<(input_path)', 'build', |
| 72 '-o', '<(grit_out_dir)'], |
| 73 'message': 'Generating resources from <(input_path)', |
| 74 }, |
| 59 ], | 75 ], |
| 60 'direct_dependent_settings': { | 76 'direct_dependent_settings': { |
| 61 'include_dirs': [ | 77 'include_dirs': [ |
| 62 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 78 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 63 ], | 79 ], |
| 64 }, | 80 }, |
| 65 'conditions': [ | 81 'conditions': [ |
| 66 ['OS=="win"', { | 82 ['OS=="win"', { |
| 67 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], | 83 'dependencies': ['<(DEPTH)/build/win/system.gyp:cygwin'], |
| 68 }], | 84 }], |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 'resource_loader_bridge.cc', | 396 'resource_loader_bridge.cc', |
| 381 'resource_loader_bridge.h', | 397 'resource_loader_bridge.h', |
| 382 'resource_type.h', | 398 'resource_type.h', |
| 383 'scoped_clipboard_writer_glue.h', | 399 'scoped_clipboard_writer_glue.h', |
| 384 'simple_webmimeregistry_impl.cc', | 400 'simple_webmimeregistry_impl.cc', |
| 385 'simple_webmimeregistry_impl.h', | 401 'simple_webmimeregistry_impl.h', |
| 386 'site_isolation_metrics.cc', | 402 'site_isolation_metrics.cc', |
| 387 'site_isolation_metrics.h', | 403 'site_isolation_metrics.h', |
| 388 'webaccessibility.cc', | 404 'webaccessibility.cc', |
| 389 'webaccessibility.h', | 405 'webaccessibility.h', |
| 406 'webaudiodevice_impl.cc', |
| 407 'webaudiodevice_impl.h', |
| 390 'webclipboard_impl.cc', | 408 'webclipboard_impl.cc', |
| 391 'webclipboard_impl.h', | 409 'webclipboard_impl.h', |
| 392 'web_io_operators.cc', | 410 'web_io_operators.cc', |
| 393 'web_io_operators.h', | 411 'web_io_operators.h', |
| 394 'webcookie.cc', | 412 'webcookie.cc', |
| 395 'webcookie.h', | 413 'webcookie.h', |
| 396 'webcursor.cc', | 414 'webcursor.cc', |
| 397 'webcursor.h', | 415 'webcursor.h', |
| 398 'webcursor_gtk.cc', | 416 'webcursor_gtk.cc', |
| 399 'webcursor_gtk_data.h', | 417 'webcursor_gtk_data.h', |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 }], | 538 }], |
| 521 ['inside_chromium_build==0', { | 539 ['inside_chromium_build==0', { |
| 522 'dependencies': [ | 540 'dependencies': [ |
| 523 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 541 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 524 ], | 542 ], |
| 525 }], | 543 }], |
| 526 ], | 544 ], |
| 527 }, | 545 }, |
| 528 ], | 546 ], |
| 529 } | 547 } |
| OLD | NEW |