| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 9 'conditions': [ |
| 10 ['inside_chromium_build==0', { | 10 ['inside_chromium_build==0', { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 { | 82 { |
| 83 'target_name': 'content_browser', | 83 'target_name': 'content_browser', |
| 84 'type': 'static_library', | 84 'type': 'static_library', |
| 85 'variables': { 'enable_wexit_time_destructors': 1, }, | 85 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 86 'includes': [ | 86 'includes': [ |
| 87 'content_browser.gypi', | 87 'content_browser.gypi', |
| 88 ], | 88 ], |
| 89 'dependencies': [ | 89 'dependencies': [ |
| 90 'content_common', | 90 'content_common', 'content_resources.gyp:content_resources', |
| 91 ], | 91 ], |
| 92 }, | 92 }, |
| 93 { | 93 { |
| 94 'target_name': 'content_common', | 94 'target_name': 'content_common', |
| 95 'type': 'static_library', | 95 'type': 'static_library', |
| 96 'variables': { 'enable_wexit_time_destructors': 1, }, | 96 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 97 'includes': [ | 97 'includes': [ |
| 98 'content_common.gypi', | 98 'content_common.gypi', |
| 99 ], | 99 ], |
| 100 'conditions': [ | 100 'conditions': [ |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 }, | 297 }, |
| 298 { | 298 { |
| 299 'target_name': 'content_jni_headers', | 299 'target_name': 'content_jni_headers', |
| 300 'type': 'none', | 300 'type': 'none', |
| 301 'includes': [ 'content_jni.gypi' ], | 301 'includes': [ 'content_jni.gypi' ], |
| 302 }, | 302 }, |
| 303 ], | 303 ], |
| 304 }], # OS == "android" | 304 }], # OS == "android" |
| 305 ], | 305 ], |
| 306 } | 306 } |
| OLD | NEW |