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 { | 6 { |
7 'variables': { | 7 'variables': { |
8 'chromium_code': 1, # Use higher warning level. | 8 'chromium_code': 1, # Use higher warning level. |
9 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 # 'tests/test_c_includes.c', | 488 # 'tests/test_c_includes.c', |
489 # 'tests/test_cc_includes.cc', | 489 # 'tests/test_cc_includes.cc', |
490 # ], | 490 # ], |
491 # 'action': [ | 491 # 'action': [ |
492 # '<!@(python generate_ppapi_include_tests.py)', | 492 # '<!@(python generate_ppapi_include_tests.py)', |
493 # ], | 493 # ], |
494 # }, | 494 # }, |
495 # ], | 495 # ], |
496 }, | 496 }, |
497 { | 497 { |
| 498 'target_name': 'ppapi_shared_impl', |
| 499 'type': 'static_library', |
| 500 'dependencies': [ |
| 501 'ppapi_c', |
| 502 '../base/base.gyp:base', |
| 503 ], |
| 504 'include_dirs': [ |
| 505 '..', |
| 506 ], |
| 507 'sources': [ |
| 508 'shared_impl/audio_impl.cc', |
| 509 'shared_impl/audio_impl.h', |
| 510 ], |
| 511 'conditions': [ |
| 512 ['OS=="win"', { |
| 513 'msvs_guid': 'E7420D65-A885-41EB-B4BE-04DE0C97033B', |
| 514 }], |
| 515 ], |
| 516 }, |
| 517 { |
498 'target_name': 'ppapi_proxy', | 518 'target_name': 'ppapi_proxy', |
499 'type': 'static_library', | 519 'type': 'static_library', |
500 'dependencies': [ | 520 'dependencies': [ |
501 '../ipc/ipc.gyp:ipc', | 521 '../ipc/ipc.gyp:ipc', |
502 'ppapi_c', | 522 'ppapi_c', |
| 523 'ppapi_shared_impl', |
503 ], | 524 ], |
504 'all_dependent_settings': { | 525 'all_dependent_settings': { |
505 'include_dirs': [ | 526 'include_dirs': [ |
506 '..', | 527 '..', |
507 ], | 528 ], |
508 }, | 529 }, |
509 'include_dirs': [ | 530 'include_dirs': [ |
510 '..', | 531 '..', |
511 '../..', # For nacl includes to work. | 532 '../..', # For nacl includes to work. |
512 ], | 533 ], |
(...skipping 16 matching lines...) Expand all Loading... |
529 'proxy/plugin_resource_tracker.h', | 550 'proxy/plugin_resource_tracker.h', |
530 'proxy/plugin_var_serialization_rules.cc', | 551 'proxy/plugin_var_serialization_rules.cc', |
531 'proxy/plugin_var_serialization_rules.h', | 552 'proxy/plugin_var_serialization_rules.h', |
532 'proxy/plugin_var_tracker.cc', | 553 'proxy/plugin_var_tracker.cc', |
533 'proxy/plugin_var_tracker.h', | 554 'proxy/plugin_var_tracker.h', |
534 'proxy/ppapi_messages.cc', | 555 'proxy/ppapi_messages.cc', |
535 'proxy/ppapi_messages.h', | 556 'proxy/ppapi_messages.h', |
536 'proxy/ppapi_messages_internal.h', | 557 'proxy/ppapi_messages_internal.h', |
537 'proxy/ppapi_param_traits.cc', | 558 'proxy/ppapi_param_traits.cc', |
538 'proxy/ppapi_param_traits.h', | 559 'proxy/ppapi_param_traits.h', |
| 560 'proxy/ppb_audio_config_proxy.cc', |
| 561 'proxy/ppb_audio_config_proxy.h', |
| 562 'proxy/ppb_audio_proxy.cc', |
| 563 'proxy/ppb_audio_proxy.h', |
539 'proxy/ppb_buffer_proxy.cc', | 564 'proxy/ppb_buffer_proxy.cc', |
540 'proxy/ppb_buffer_proxy.h', | 565 'proxy/ppb_buffer_proxy.h', |
541 'proxy/ppb_char_set_proxy.cc', | 566 'proxy/ppb_char_set_proxy.cc', |
542 'proxy/ppb_char_set_proxy.h', | 567 'proxy/ppb_char_set_proxy.h', |
543 'proxy/ppb_core_proxy.cc', | 568 'proxy/ppb_core_proxy.cc', |
544 'proxy/ppb_core_proxy.h', | 569 'proxy/ppb_core_proxy.h', |
545 'proxy/ppb_cursor_control_proxy.cc', | 570 'proxy/ppb_cursor_control_proxy.cc', |
546 'proxy/ppb_cursor_control_proxy.h', | 571 'proxy/ppb_cursor_control_proxy.h', |
547 'proxy/ppb_flash_proxy.cc', | 572 'proxy/ppb_flash_proxy.cc', |
548 'proxy/ppb_flash_proxy.h', | 573 'proxy/ppb_flash_proxy.h', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 ['OS=="win"', { | 609 ['OS=="win"', { |
585 }], | 610 }], |
586 ['OS=="linux"', { | 611 ['OS=="linux"', { |
587 }], | 612 }], |
588 ['OS=="mac"', { | 613 ['OS=="mac"', { |
589 }] | 614 }] |
590 ], | 615 ], |
591 }, | 616 }, |
592 ], | 617 ], |
593 } | 618 } |
OLD | NEW |