| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 'variables': { | 8 'variables': { |
| 9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
| 10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
| (...skipping 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 ], | 773 ], |
| 774 }, | 774 }, |
| 775 { | 775 { |
| 776 'target_name': 'ppapi_plugin', | 776 'target_name': 'ppapi_plugin', |
| 777 'type': '<(library)', | 777 'type': '<(library)', |
| 778 'dependencies': [ | 778 'dependencies': [ |
| 779 '../base/base.gyp:base', | 779 '../base/base.gyp:base', |
| 780 '../ppapi/ppapi.gyp:ppapi_proxy', | 780 '../ppapi/ppapi.gyp:ppapi_proxy', |
| 781 ], | 781 ], |
| 782 'sources': [ | 782 'sources': [ |
| 783 'ppapi_plugin/plugin_process_dispatcher.cc', |
| 784 'ppapi_plugin/plugin_process_dispatcher.h', |
| 783 'ppapi_plugin/ppapi_plugin_main.cc', | 785 'ppapi_plugin/ppapi_plugin_main.cc', |
| 784 'ppapi_plugin/ppapi_process.cc', | 786 'ppapi_plugin/ppapi_process.cc', |
| 785 'ppapi_plugin/ppapi_process.h', | 787 'ppapi_plugin/ppapi_process.h', |
| 786 'ppapi_plugin/ppapi_thread.cc', | 788 'ppapi_plugin/ppapi_thread.cc', |
| 787 'ppapi_plugin/ppapi_thread.h', | 789 'ppapi_plugin/ppapi_thread.h', |
| 788 ], | 790 ], |
| 789 'include_dirs': [ | 791 'include_dirs': [ |
| 790 '..', | 792 '..', |
| 791 ], | 793 ], |
| 792 }, | 794 }, |
| (...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1922 }], # targets | 1924 }], # targets |
| 1923 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1925 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1924 ], # 'conditions' | 1926 ], # 'conditions' |
| 1925 } | 1927 } |
| 1926 | 1928 |
| 1927 # Local Variables: | 1929 # Local Variables: |
| 1928 # tab-width:2 | 1930 # tab-width:2 |
| 1929 # indent-tabs-mode:nil | 1931 # indent-tabs-mode:nil |
| 1930 # End: | 1932 # End: |
| 1931 # vim: set expandtab tabstop=2 shiftwidth=2: | 1933 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |