| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
| 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
| 9 }, | 9 }, |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 'content_common', | 129 'content_common', |
| 130 ], | 130 ], |
| 131 }, | 131 }, |
| 132 ], | 132 ], |
| 133 }, | 133 }, |
| 134 { # component != static_library | 134 { # component != static_library |
| 135 'targets': [ | 135 'targets': [ |
| 136 {'target_name': 'content', | 136 {'target_name': 'content', |
| 137 'type': 'shared_library', | 137 'type': 'shared_library', |
| 138 'variables': { 'enable_wexit_time_destructors': 1, }, | 138 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 139 'dependencies': [ | 139 'dependencies': [ |
| 140 'content_resources.gyp:content_resources', | 140 'content_resources.gyp:content_resources', |
| 141 ], | 141 ], |
| 142 'conditions': [ |
| 143 ['OS=="mac"', { |
| 144 'dependencies': [ |
| 145 '<(DEPTH)/third_party/mach_override/mach_override.gyp:mach_override
', |
| 146 ], |
| 147 }], |
| 148 ], |
| 142 'includes': [ | 149 'includes': [ |
| 143 'content_app.gypi', | 150 'content_app.gypi', |
| 144 'content_browser.gypi', | 151 'content_browser.gypi', |
| 145 'content_common.gypi', | 152 'content_common.gypi', |
| 146 'content_gpu.gypi', | 153 'content_gpu.gypi', |
| 147 'content_plugin.gypi', | 154 'content_plugin.gypi', |
| 148 'content_ppapi_plugin.gypi', | 155 'content_ppapi_plugin.gypi', |
| 149 'content_renderer.gypi', | 156 'content_renderer.gypi', |
| 150 'content_utility.gypi', | 157 'content_utility.gypi', |
| 151 'content_worker.gypi', | 158 'content_worker.gypi', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 }, | 192 }, |
| 186 {'target_name': 'content_worker', | 193 {'target_name': 'content_worker', |
| 187 'type': 'none', | 194 'type': 'none', |
| 188 'dependencies': ['content'], | 195 'dependencies': ['content'], |
| 189 }, | 196 }, |
| 190 ], | 197 ], |
| 191 }, | 198 }, |
| 192 ], | 199 ], |
| 193 ], | 200 ], |
| 194 } | 201 } |
| OLD | NEW |