| OLD | NEW |
| 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 # PLEASE NOTE: This file contains the targets for generating the | 5 # PLEASE NOTE: This file contains the targets for generating the |
| 6 # plugin two different ways -- once as a shared library, and once as a | 6 # plugin two different ways -- once as a shared library, and once as a |
| 7 # static library. The static library is only built if we are inside | 7 # static library. The static library is only built if we are inside |
| 8 # of a Chrome tree, and it gets built with different defined symbols, | 8 # of a Chrome tree, and it gets built with different defined symbols, |
| 9 # and without the packaging code on the Mac. The shared library gets | 9 # and without the packaging code on the Mac. The shared library gets |
| 10 # built in an o3d tree, or in a chrome tree when built by an o3d | 10 # built in an o3d tree, or in a chrome tree when built by an o3d |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 }, | 659 }, |
| 660 { | 660 { |
| 661 'action': ['sh', | 661 'action': ['sh', |
| 662 '-c', | 662 '-c', |
| 663 'python ' | 663 'python ' |
| 664 'version_info.py ' | 664 'version_info.py ' |
| 665 '--set_name=<(plugin_name) ' | 665 '--set_name=<(plugin_name) ' |
| 666 '--set_version=<(plugin_version) ' | 666 '--set_version=<(plugin_version) ' |
| 667 '--set_npapi_filename=<(plugin_npapi_filename) ' | 667 '--set_npapi_filename=<(plugin_npapi_filename) ' |
| 668 '--set_npapi_mimetype=<(plugin_npapi_mimetype) ' | 668 '--set_npapi_mimetype=<(plugin_npapi_mimetype) ' |
| 669 '--set_o3d_plugin_breakpad_url=<(o3d_plugin_breakp
ad_url) ' | 669 '--set_o3d_plugin_breakpad_url="<(o3d_plugin_break
pad_url)" ' |
| 670 'mac/Info.plist ' | 670 'mac/Info.plist ' |
| 671 '<(SHARED_INTERMEDIATE_DIR)/plugin/Info.plist', | 671 '<(SHARED_INTERMEDIATE_DIR)/plugin/Info.plist', |
| 672 ], | 672 ], |
| 673 }, | 673 }, |
| 674 ], | 674 ], |
| 675 ], | 675 ], |
| 676 }, | 676 }, |
| 677 ], | 677 ], |
| 678 ], | 678 ], |
| 679 }, | 679 }, |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 }, | 844 }, |
| 845 ], | 845 ], |
| 846 ], | 846 ], |
| 847 } | 847 } |
| 848 | 848 |
| 849 # Local Variables: | 849 # Local Variables: |
| 850 # tab-width:2 | 850 # tab-width:2 |
| 851 # indent-tabs-mode:nil | 851 # indent-tabs-mode:nil |
| 852 # End: | 852 # End: |
| 853 # vim: set expandtab tabstop=2 shiftwidth=2: | 853 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |