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 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1651 '../third_party/sqlite/sqlite.gyp:*', | 1649 '../third_party/sqlite/sqlite.gyp:*', |
1652 '../third_party/zlib/zlib.gyp:*', | 1650 '../third_party/zlib/zlib.gyp:*', |
1653 '../ui/gfx/gfx.gyp:*', | 1651 '../ui/gfx/gfx.gyp:*', |
1654 '../webkit/support/webkit_support.gyp:*', | 1652 '../webkit/support/webkit_support.gyp:*', |
1655 '../webkit/webkit.gyp:*', | 1653 '../webkit/webkit.gyp:*', |
1656 | 1654 |
1657 '../build/temp_gyp/googleurl.gyp:*', | 1655 '../build/temp_gyp/googleurl.gyp:*', |
1658 | 1656 |
1659 '../breakpad/breakpad.gyp:*', | 1657 '../breakpad/breakpad.gyp:*', |
1660 '../courgette/courgette.gyp:*', | 1658 '../courgette/courgette.gyp:*', |
1661 '../gears/gears.gyp:*', | |
1662 '../rlz/rlz.gyp:*', | 1659 '../rlz/rlz.gyp:*', |
1663 '../sandbox/sandbox.gyp:*', | 1660 '../sandbox/sandbox.gyp:*', |
1664 '../tools/memory_watcher/memory_watcher.gyp:*', | 1661 '../tools/memory_watcher/memory_watcher.gyp:*', |
1665 '../v8/tools/gyp/v8.gyp:v8_shell', | 1662 '../v8/tools/gyp/v8.gyp:v8_shell', |
1666 '<(libjpeg_gyp_path):*', | 1663 '<(libjpeg_gyp_path):*', |
1667 ], | 1664 ], |
1668 'conditions': [ | 1665 'conditions': [ |
1669 ['win_use_allocator_shim==1', { | 1666 ['win_use_allocator_shim==1', { |
1670 'dependencies': [ | 1667 'dependencies': [ |
1671 '../base/allocator/allocator.gyp:*', | 1668 '../base/allocator/allocator.gyp:*', |
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1926 }], # targets | 1923 }], # targets |
1927 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1924 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1928 ], # 'conditions' | 1925 ], # 'conditions' |
1929 } | 1926 } |
1930 | 1927 |
1931 # Local Variables: | 1928 # Local Variables: |
1932 # tab-width:2 | 1929 # tab-width:2 |
1933 # indent-tabs-mode:nil | 1930 # indent-tabs-mode:nil |
1934 # End: | 1931 # End: |
1935 # vim: set expandtab tabstop=2 shiftwidth=2: | 1932 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |