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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 1519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1530 'renderer/webplugin_delegate_proxy.h', | 1530 'renderer/webplugin_delegate_proxy.h', |
1531 'renderer/webworker_proxy.cc', | 1531 'renderer/webworker_proxy.cc', |
1532 'renderer/webworker_proxy.h', | 1532 'renderer/webworker_proxy.h', |
1533 ], | 1533 ], |
1534 'link_settings': { | 1534 'link_settings': { |
1535 'mac_bundle_resources': [ | 1535 'mac_bundle_resources': [ |
1536 'renderer/renderer.sb', | 1536 'renderer/renderer.sb', |
1537 ], | 1537 ], |
1538 }, | 1538 }, |
1539 'conditions': [ | 1539 'conditions': [ |
| 1540 # Plugin code. |
| 1541 ['OS=="linux" or OS=="win"', { |
| 1542 'dependencies': [ |
| 1543 'plugin', |
| 1544 ], |
| 1545 }], |
| 1546 # Linux-specific rules. |
1540 ['OS=="linux"', { | 1547 ['OS=="linux"', { |
1541 'dependencies': [ | 1548 'dependencies': [ |
1542 '../build/linux/system.gyp:gtk', | 1549 '../build/linux/system.gyp:gtk', |
1543 ], | 1550 ], |
1544 }], | 1551 }], |
| 1552 # Windows-specific rules. |
1545 ['OS=="win"', { | 1553 ['OS=="win"', { |
1546 'include_dirs': [ | 1554 'include_dirs': [ |
1547 'third_party/wtl/include', | 1555 'third_party/wtl/include', |
1548 ], | 1556 ], |
1549 'dependencies': [ | |
1550 'plugin', | |
1551 ], | |
1552 },], | 1557 },], |
| 1558 # As of yet unported-from-Windows code. |
1553 ['OS!="win"', { | 1559 ['OS!="win"', { |
1554 'sources!': [ | 1560 'sources!': [ |
1555 'renderer/plugin_channel_host.cc', | |
1556 'renderer/webplugin_delegate_proxy.cc', | |
1557 'renderer/webworker_proxy.cc', | 1561 'renderer/webworker_proxy.cc', |
1558 'renderer/webworker_proxy.h', | 1562 'renderer/webworker_proxy.h', |
1559 ], | 1563 ], |
1560 },], | 1564 },], |
| 1565 # As of yet unported-to-Mac code. |
| 1566 ['OS=="mac"', { |
| 1567 'sources!': [ |
| 1568 'renderer/plugin_channel_host.cc', |
| 1569 'renderer/webplugin_delegate_proxy.cc', |
| 1570 ] |
| 1571 },], |
1561 ], | 1572 ], |
1562 }, | 1573 }, |
1563 { | 1574 { |
1564 'target_name': 'app', | 1575 'target_name': 'app', |
1565 'type': 'executable', | 1576 'type': 'executable', |
1566 'mac_bundle': 1, | 1577 'mac_bundle': 1, |
1567 'dependencies': [ | 1578 'dependencies': [ |
1568 'common', | 1579 'common', |
1569 'browser', | 1580 'browser', |
1570 'renderer', | 1581 'renderer', |
(...skipping 1251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2822 'views/window/native_frame_view.cc', | 2833 'views/window/native_frame_view.cc', |
2823 'views/window/non_client_view.cc', | 2834 'views/window/non_client_view.cc', |
2824 'views/window/window_delegate.cc', | 2835 'views/window/window_delegate.cc', |
2825 'views/window/window_win.cc', | 2836 'views/window/window_win.cc', |
2826 ], | 2837 ], |
2827 }], | 2838 }], |
2828 ], | 2839 ], |
2829 }, | 2840 }, |
2830 ], | 2841 ], |
2831 }], # OS=="win" or OS=="linux" | 2842 }], # OS=="win" or OS=="linux" |
2832 ['OS=="win"', | 2843 ['OS=="win" or OS=="linux"', |
2833 { 'targets': [ | 2844 { 'targets': [ |
2834 { | 2845 { |
2835 'target_name': 'plugin', | 2846 'target_name': 'plugin', |
2836 'type': '<(library)', | 2847 'type': '<(library)', |
2837 'dependencies': [ | 2848 'dependencies': [ |
2838 'common', | 2849 'common', |
2839 'resources', | 2850 'resources', |
2840 '../media/media.gyp:media', | 2851 '../media/media.gyp:media', |
2841 '../skia/skia.gyp:skia', | 2852 '../skia/skia.gyp:skia', |
2842 '../third_party/icu38/icu38.gyp:icui18n', | 2853 '../third_party/icu38/icu38.gyp:icui18n', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2880 '__STD_C', | 2891 '__STD_C', |
2881 '_CRT_SECURE_NO_DEPRECATE', | 2892 '_CRT_SECURE_NO_DEPRECATE', |
2882 '_SCL_SECURE_NO_DEPRECATE', | 2893 '_SCL_SECURE_NO_DEPRECATE', |
2883 ], | 2894 ], |
2884 'include_dirs': [ | 2895 'include_dirs': [ |
2885 'third_party/wtl/include', | 2896 'third_party/wtl/include', |
2886 ], | 2897 ], |
2887 },], | 2898 },], |
2888 ], | 2899 ], |
2889 }, | 2900 }, |
| 2901 ]}, # 'targets' |
| 2902 ], # OS=="win" or OS=="linux" |
| 2903 ['OS=="win"', |
| 2904 { 'targets': [ |
2890 { | 2905 { |
2891 'target_name': 'worker', | 2906 'target_name': 'worker', |
2892 'type': '<(library)', | 2907 'type': '<(library)', |
2893 'dependencies': [ | 2908 'dependencies': [ |
2894 '../base/base.gyp:base', | 2909 '../base/base.gyp:base', |
2895 '../webkit/webkit.gyp:webkit', | 2910 '../webkit/webkit.gyp:webkit', |
2896 ], | 2911 ], |
2897 'sources': [ | 2912 'sources': [ |
2898 'tools/build/win/precompiled.cc', | 2913 'tools/build/win/precompiled.cc', |
2899 'tools/build/win/precompiled.h', | 2914 'tools/build/win/precompiled.h', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2940 '../tools/code_coverage/coverage_posix.py', | 2955 '../tools/code_coverage/coverage_posix.py', |
2941 '--directory', | 2956 '--directory', |
2942 '<(PRODUCT_DIR)' ], | 2957 '<(PRODUCT_DIR)' ], |
2943 }, | 2958 }, |
2944 ], # 'actions' | 2959 ], # 'actions' |
2945 }, | 2960 }, |
2946 ] | 2961 ] |
2947 }], | 2962 }], |
2948 ], # 'conditions' | 2963 ], # 'conditions' |
2949 } | 2964 } |
OLD | NEW |