| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'dependencies': [ | 58 'dependencies': [ |
| 59 'content_common', | 59 'content_common', |
| 60 ], | 60 ], |
| 61 }, | 61 }, |
| 62 {'target_name': 'content_common', | 62 {'target_name': 'content_common', |
| 63 'type': 'static_library', | 63 'type': 'static_library', |
| 64 'variables': { 'enable_wexit_time_destructors': 1, }, | 64 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 65 'includes': [ | 65 'includes': [ |
| 66 'content_common.gypi', | 66 'content_common.gypi', |
| 67 ], | 67 ], |
| 68 'dependencies': [ |
| 69 'content_resources.gyp:content_resources', |
| 70 ], |
| 68 }, | 71 }, |
| 69 {'target_name': 'content_gpu', | 72 {'target_name': 'content_gpu', |
| 70 'type': 'static_library', | 73 'type': 'static_library', |
| 71 'variables': { 'enable_wexit_time_destructors': 1, }, | 74 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 72 'includes': [ | 75 'includes': [ |
| 73 'content_gpu.gypi', | 76 'content_gpu.gypi', |
| 74 ], | 77 ], |
| 75 'dependencies': [ | 78 'dependencies': [ |
| 76 'content_common', | 79 'content_common', |
| 77 ], | 80 ], |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 {'target_name': 'content_app', | 213 {'target_name': 'content_app', |
| 211 'type': 'none', | 214 'type': 'none', |
| 212 'dependencies': ['content', 'content_browser'], | 215 'dependencies': ['content', 'content_browser'], |
| 213 }, | 216 }, |
| 214 {'target_name': 'content_browser', | 217 {'target_name': 'content_browser', |
| 215 'type': 'none', | 218 'type': 'none', |
| 216 'dependencies': ['content'], | 219 'dependencies': ['content'], |
| 217 }, | 220 }, |
| 218 {'target_name': 'content_common', | 221 {'target_name': 'content_common', |
| 219 'type': 'none', | 222 'type': 'none', |
| 220 'dependencies': ['content'], | 223 'dependencies': ['content', 'content_resources.gyp:content_resources'], |
| 221 }, | 224 }, |
| 222 {'target_name': 'content_gpu', | 225 {'target_name': 'content_gpu', |
| 223 'type': 'none', | 226 'type': 'none', |
| 224 'dependencies': ['content'], | 227 'dependencies': ['content'], |
| 225 }, | 228 }, |
| 226 {'target_name': 'content_plugin', | 229 {'target_name': 'content_plugin', |
| 227 'type': 'none', | 230 'type': 'none', |
| 228 'dependencies': ['content'], | 231 'dependencies': ['content'], |
| 229 }, | 232 }, |
| 230 {'target_name': 'content_ppapi_plugin', | 233 {'target_name': 'content_ppapi_plugin', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 241 }, | 244 }, |
| 242 {'target_name': 'content_worker', | 245 {'target_name': 'content_worker', |
| 243 'type': 'none', | 246 'type': 'none', |
| 244 'dependencies': ['content'], | 247 'dependencies': ['content'], |
| 245 }, | 248 }, |
| 246 ], | 249 ], |
| 247 }, | 250 }, |
| 248 ], | 251 ], |
| 249 ], | 252 ], |
| 250 } | 253 } |
| OLD | NEW |