| 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 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. |
| 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, | 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, |
| 10 }, | 10 }, |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 }], | 150 }], |
| 151 ], | 151 ], |
| 152 # Disable c4267 warnings until we fix size_t to int truncations. | 152 # Disable c4267 warnings until we fix size_t to int truncations. |
| 153 'msvs_disabled_warnings': [ 4267, ], | 153 'msvs_disabled_warnings': [ 4267, ], |
| 154 }, | 154 }, |
| 155 ], | 155 ], |
| 156 'conditions': [ | 156 'conditions': [ |
| 157 ['OS != "ios"', { | 157 ['OS != "ios"', { |
| 158 'targets': [ | 158 'targets': [ |
| 159 { | 159 { |
| 160 # GN version: //content/child and //content/public/child |
| 160 'target_name': 'content_child', | 161 'target_name': 'content_child', |
| 161 'type': 'static_library', | 162 'type': 'static_library', |
| 162 'variables': { 'enable_wexit_time_destructors': 1, }, | 163 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 163 'includes': [ | 164 'includes': [ |
| 164 'content_child.gypi', | 165 'content_child.gypi', |
| 165 ], | 166 ], |
| 166 'dependencies': [ | 167 'dependencies': [ |
| 167 'content_resources.gyp:content_resources', | 168 'content_resources.gyp:content_resources', |
| 168 ], | 169 ], |
| 169 # Disable c4267 warnings until we fix size_t to int truncations. | 170 # Disable c4267 warnings until we fix size_t to int truncations. |
| 170 'msvs_disabled_warnings': [ 4267, ], | 171 'msvs_disabled_warnings': [ 4267, ], |
| 171 }, | 172 }, |
| 172 { | 173 { |
| 174 # GN version: //content/gpu |
| 173 'target_name': 'content_gpu', | 175 'target_name': 'content_gpu', |
| 174 'type': 'static_library', | 176 'type': 'static_library', |
| 175 'variables': { 'enable_wexit_time_destructors': 1, }, | 177 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 176 'includes': [ | 178 'includes': [ |
| 177 'content_gpu.gypi', | 179 'content_gpu.gypi', |
| 178 ], | 180 ], |
| 179 'dependencies': [ | 181 'dependencies': [ |
| 180 'content_child', | 182 'content_child', |
| 181 'content_common', | 183 'content_common', |
| 182 ], | 184 ], |
| 183 }, | 185 }, |
| 184 { | 186 { |
| 187 # GN version: //content/plugin and //content/public/plugin |
| 185 'target_name': 'content_plugin', | 188 'target_name': 'content_plugin', |
| 186 'type': 'static_library', | 189 'type': 'static_library', |
| 187 'variables': { 'enable_wexit_time_destructors': 1, }, | 190 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 188 'includes': [ | 191 'includes': [ |
| 189 'content_plugin.gypi', | 192 'content_plugin.gypi', |
| 190 ], | 193 ], |
| 191 'dependencies': [ | 194 'dependencies': [ |
| 192 'content_child', | 195 'content_child', |
| 193 'content_common', | 196 'content_common', |
| 194 ], | 197 ], |
| 195 }, | 198 }, |
| 196 { | 199 { |
| 200 # GN version: //content/ppapi_plugin |
| 197 'target_name': 'content_ppapi_plugin', | 201 'target_name': 'content_ppapi_plugin', |
| 198 'type': 'static_library', | 202 'type': 'static_library', |
| 199 'variables': { 'enable_wexit_time_destructors': 1, }, | 203 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 200 'includes': [ | 204 'includes': [ |
| 201 'content_ppapi_plugin.gypi', | 205 'content_ppapi_plugin.gypi', |
| 202 ], | 206 ], |
| 203 # Disable c4267 warnings until we fix size_t to int truncations. | 207 # Disable c4267 warnings until we fix size_t to int truncations. |
| 204 'msvs_disabled_warnings': [ 4267, ], | 208 'msvs_disabled_warnings': [ 4267, ], |
| 205 }, | 209 }, |
| 206 { | 210 { |
| 211 # GN version: //content/renderer and //content/public/renderer |
| 207 'target_name': 'content_renderer', | 212 'target_name': 'content_renderer', |
| 208 'type': 'static_library', | 213 'type': 'static_library', |
| 209 'variables': { 'enable_wexit_time_destructors': 1, }, | 214 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 210 'includes': [ | 215 'includes': [ |
| 211 'content_renderer.gypi', | 216 'content_renderer.gypi', |
| 212 ], | 217 ], |
| 213 'dependencies': [ | 218 'dependencies': [ |
| 214 'content_child', | 219 'content_child', |
| 215 'content_common', | 220 'content_common', |
| 216 'content_resources.gyp:content_resources', | 221 'content_resources.gyp:content_resources', |
| 217 ], | 222 ], |
| 218 'conditions': [ | 223 'conditions': [ |
| 219 ['chromium_enable_vtune_jit_for_v8==1', { | 224 ['chromium_enable_vtune_jit_for_v8==1', { |
| 220 'dependencies': [ | 225 'dependencies': [ |
| 221 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', | 226 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', |
| 222 ], | 227 ], |
| 223 }], | 228 }], |
| 224 ], | 229 ], |
| 225 }, | 230 }, |
| 226 { | 231 { |
| 232 # GN version: //content/utility and //content/public/utility |
| 227 'target_name': 'content_utility', | 233 'target_name': 'content_utility', |
| 228 'type': 'static_library', | 234 'type': 'static_library', |
| 229 'variables': { 'enable_wexit_time_destructors': 1, }, | 235 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 230 'includes': [ | 236 'includes': [ |
| 231 'content_utility.gypi', | 237 'content_utility.gypi', |
| 232 ], | 238 ], |
| 233 'dependencies': [ | 239 'dependencies': [ |
| 234 'content_child', | 240 'content_child', |
| 235 'content_common', | 241 'content_common', |
| 236 ], | 242 ], |
| 237 }, | 243 }, |
| 238 { | 244 { |
| 245 # GN version: //content/worker |
| 239 'target_name': 'content_worker', | 246 'target_name': 'content_worker', |
| 240 'type': 'static_library', | 247 'type': 'static_library', |
| 241 'variables': { 'enable_wexit_time_destructors': 1, }, | 248 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 242 'includes': [ | 249 'includes': [ |
| 243 'content_worker.gypi', | 250 'content_worker.gypi', |
| 244 ], | 251 ], |
| 245 'dependencies': [ | 252 'dependencies': [ |
| 246 'content_child', | 253 'content_child', |
| 247 'content_common', | 254 'content_common', |
| 248 ], | 255 ], |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 'browser/gamepad/canonical_axis_index_list.h', | 582 'browser/gamepad/canonical_axis_index_list.h', |
| 576 'browser/gamepad/canonical_button_index_list.h', | 583 'browser/gamepad/canonical_button_index_list.h', |
| 577 ], | 584 ], |
| 578 }, | 585 }, |
| 579 'includes': [ '../build/android/java_cpp_template.gypi' ], | 586 'includes': [ '../build/android/java_cpp_template.gypi' ], |
| 580 }, | 587 }, |
| 581 ], | 588 ], |
| 582 }], # OS == "android" | 589 }], # OS == "android" |
| 583 ], | 590 ], |
| 584 } | 591 } |
| OLD | NEW |