| 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 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 '../third_party/npapi/npapi.gyp:npapi', | 559 '../third_party/npapi/npapi.gyp:npapi', |
| 560 '../third_party/hunspell/hunspell.gyp:hunspell', | 560 '../third_party/hunspell/hunspell.gyp:hunspell', |
| 561 '../webkit/support/webkit_support.gyp:glue', | 561 '../webkit/support/webkit_support.gyp:glue', |
| 562 ], | 562 ], |
| 563 'include_dirs': [ | 563 'include_dirs': [ |
| 564 '<(INTERMEDIATE_DIR)', | 564 '<(INTERMEDIATE_DIR)', |
| 565 ], | 565 ], |
| 566 'sources': [ | 566 'sources': [ |
| 567 # All .cc, .h, .m, and .mm files under plugins except for tests and | 567 # All .cc, .h, .m, and .mm files under plugins except for tests and |
| 568 # mocks. | 568 # mocks. |
| 569 'plugin/chrome_plugin_host.cc', | |
| 570 'plugin/chrome_plugin_host.h', | |
| 571 'plugin/npobject_base.h', | 569 'plugin/npobject_base.h', |
| 572 'plugin/npobject_proxy.cc', | 570 'plugin/npobject_proxy.cc', |
| 573 'plugin/npobject_proxy.h', | 571 'plugin/npobject_proxy.h', |
| 574 'plugin/npobject_stub.cc', | 572 'plugin/npobject_stub.cc', |
| 575 'plugin/npobject_stub.h', | 573 'plugin/npobject_stub.h', |
| 576 'plugin/npobject_util.cc', | 574 'plugin/npobject_util.cc', |
| 577 'plugin/npobject_util.h', | 575 'plugin/npobject_util.h', |
| 578 'plugin/plugin_channel.cc', | 576 'plugin/plugin_channel.cc', |
| 579 'plugin/plugin_channel.h', | 577 'plugin/plugin_channel.h', |
| 580 'plugin/plugin_channel_base.cc', | 578 'plugin/plugin_channel_base.cc', |
| (...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1639 '../third_party/sqlite/sqlite.gyp:*', | 1637 '../third_party/sqlite/sqlite.gyp:*', |
| 1640 '../third_party/zlib/zlib.gyp:*', | 1638 '../third_party/zlib/zlib.gyp:*', |
| 1641 '../ui/gfx/gfx.gyp:*', | 1639 '../ui/gfx/gfx.gyp:*', |
| 1642 '../webkit/support/webkit_support.gyp:*', | 1640 '../webkit/support/webkit_support.gyp:*', |
| 1643 '../webkit/webkit.gyp:*', | 1641 '../webkit/webkit.gyp:*', |
| 1644 | 1642 |
| 1645 '../build/temp_gyp/googleurl.gyp:*', | 1643 '../build/temp_gyp/googleurl.gyp:*', |
| 1646 | 1644 |
| 1647 '../breakpad/breakpad.gyp:*', | 1645 '../breakpad/breakpad.gyp:*', |
| 1648 '../courgette/courgette.gyp:*', | 1646 '../courgette/courgette.gyp:*', |
| 1649 '../gears/gears.gyp:*', | |
| 1650 '../rlz/rlz.gyp:*', | 1647 '../rlz/rlz.gyp:*', |
| 1651 '../sandbox/sandbox.gyp:*', | 1648 '../sandbox/sandbox.gyp:*', |
| 1652 '../tools/memory_watcher/memory_watcher.gyp:*', | 1649 '../tools/memory_watcher/memory_watcher.gyp:*', |
| 1653 '../v8/tools/gyp/v8.gyp:v8_shell', | 1650 '../v8/tools/gyp/v8.gyp:v8_shell', |
| 1654 '<(libjpeg_gyp_path):*', | 1651 '<(libjpeg_gyp_path):*', |
| 1655 ], | 1652 ], |
| 1656 'conditions': [ | 1653 'conditions': [ |
| 1657 ['win_use_allocator_shim==1', { | 1654 ['win_use_allocator_shim==1', { |
| 1658 'dependencies': [ | 1655 'dependencies': [ |
| 1659 '../base/allocator/allocator.gyp:*', | 1656 '../base/allocator/allocator.gyp:*', |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1916 }], # targets | 1913 }], # targets |
| 1917 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1914 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1918 ], # 'conditions' | 1915 ], # 'conditions' |
| 1919 } | 1916 } |
| 1920 | 1917 |
| 1921 # Local Variables: | 1918 # Local Variables: |
| 1922 # tab-width:2 | 1919 # tab-width:2 |
| 1923 # indent-tabs-mode:nil | 1920 # indent-tabs-mode:nil |
| 1924 # End: | 1921 # End: |
| 1925 # vim: set expandtab tabstop=2 shiftwidth=2: | 1922 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |