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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 '../../breakpad/breakpad.gyp:breakpad', | 154 '../../breakpad/breakpad.gyp:breakpad', |
155 ], | 155 ], |
156 'xcode_settings': { | 156 'xcode_settings': { |
157 'INFOPLIST_FILE': '<(SHARED_INTERMEDIATE_DIR)/plugin/Info.plist', | 157 'INFOPLIST_FILE': '<(SHARED_INTERMEDIATE_DIR)/plugin/Info.plist', |
158 }, | 158 }, |
159 'mac_bundle_resources': [ | 159 'mac_bundle_resources': [ |
160 'mac/Resources/English.lproj', | 160 'mac/Resources/English.lproj', |
161 ], | 161 ], |
162 'sources': [ | 162 'sources': [ |
163 'mac/config_mac.mm', | 163 'mac/config_mac.mm', |
| 164 'mac/fullscreen_window_mac.h', |
| 165 'mac/fullscreen_window_mac.mm', |
164 'mac/o3d_layer.mm', | 166 'mac/o3d_layer.mm', |
165 'mac/o3d_plugin.r', | 167 'mac/o3d_plugin.r', |
| 168 'mac/overlay_window_mac.h', |
| 169 'mac/overlay_window_mac.mm', |
166 'mac/plugin_logging-mac.mm', | 170 'mac/plugin_logging-mac.mm', |
167 'mac/plugin_mac.h', | 171 'mac/plugin_mac.h', |
168 'mac/plugin_mac.mm', | 172 'mac/plugin_mac.mm', |
169 'mac/graphics_utils_mac.mm', | 173 'mac/graphics_utils_mac.mm', |
170 'mac/main_mac.mm', | 174 'mac/main_mac.mm', |
171 ], | 175 ], |
172 'mac_framework_dirs': [ | 176 'mac_framework_dirs': [ |
173 '../../<(cgdir)', | 177 '../../<(cgdir)', |
174 ], | 178 ], |
175 'include_dirs': [ | 179 'include_dirs': [ |
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
791 }, | 795 }, |
792 ], | 796 ], |
793 ], | 797 ], |
794 } | 798 } |
795 | 799 |
796 # Local Variables: | 800 # Local Variables: |
797 # tab-width:2 | 801 # tab-width:2 |
798 # indent-tabs-mode:nil | 802 # indent-tabs-mode:nil |
799 # End: | 803 # End: |
800 # vim: set expandtab tabstop=2 shiftwidth=2: | 804 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |