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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ], | 81 ], |
82 }, | 82 }, |
83 { | 83 { |
84 'target_name': 'content_browser', | 84 'target_name': 'content_browser', |
85 'type': 'static_library', | 85 'type': 'static_library', |
86 'variables': { 'enable_wexit_time_destructors': 1, }, | 86 'variables': { 'enable_wexit_time_destructors': 1, }, |
87 'includes': [ | 87 'includes': [ |
88 'content_browser.gypi', | 88 'content_browser.gypi', |
89 ], | 89 ], |
90 'dependencies': [ | 90 'dependencies': [ |
91 'content_common', 'content_resources.gyp:content_resources', | 91 'content_common', |
| 92 'content_resources.gyp:content_resources', |
| 93 ], |
| 94 'conditions': [ |
| 95 ['OS != "ios"', { |
| 96 'dependencies': [ |
| 97 'content_gpu', |
| 98 'content_renderer', |
| 99 ], |
| 100 }], |
92 ], | 101 ], |
93 }, | 102 }, |
94 { | 103 { |
95 'target_name': 'content_common', | 104 'target_name': 'content_common', |
96 'type': 'static_library', | 105 'type': 'static_library', |
97 'variables': { 'enable_wexit_time_destructors': 1, }, | 106 'variables': { 'enable_wexit_time_destructors': 1, }, |
98 'includes': [ | 107 'includes': [ |
99 'content_common.gypi', | 108 'content_common.gypi', |
100 ], | 109 ], |
101 'conditions': [ | 110 'conditions': [ |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 'dependencies': [ | 352 'dependencies': [ |
344 'surface_texture_jni_headers', | 353 'surface_texture_jni_headers', |
345 'surface_jni_headers', | 354 'surface_jni_headers', |
346 ], | 355 ], |
347 'includes': [ 'content_jni.gypi' ], | 356 'includes': [ 'content_jni.gypi' ], |
348 }, | 357 }, |
349 ], | 358 ], |
350 }], # OS == "android" | 359 }], # OS == "android" |
351 ], | 360 ], |
352 } | 361 } |
OLD | NEW |