| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 'type': 'static_library', | 258 'type': 'static_library', |
| 259 'variables': { 'enable_wexit_time_destructors': 1, }, | 259 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 260 'includes': [ | 260 'includes': [ |
| 261 'content_renderer.gypi', | 261 'content_renderer.gypi', |
| 262 ], | 262 ], |
| 263 'dependencies': [ | 263 'dependencies': [ |
| 264 'content_child', | 264 'content_child', |
| 265 'content_common', | 265 'content_common', |
| 266 'content_resources', | 266 'content_resources', |
| 267 ], | 267 ], |
| 268 'export_dependent_settings': [ |
| 269 'content_common', |
| 270 ], |
| 268 'conditions': [ | 271 'conditions': [ |
| 269 ['chromium_enable_vtune_jit_for_v8==1', { | 272 ['chromium_enable_vtune_jit_for_v8==1', { |
| 270 'dependencies': [ | 273 'dependencies': [ |
| 271 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', | 274 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', |
| 272 ], | 275 ], |
| 273 }], | 276 }], |
| 274 ], | 277 ], |
| 275 }, | 278 }, |
| 276 { | 279 { |
| 277 # GN version: //content/utility and //content/public/utility | 280 # GN version: //content/utility and //content/public/utility |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 'type': 'none', | 390 'type': 'none', |
| 388 'dependencies': ['content'], | 391 'dependencies': ['content'], |
| 389 # Disable c4267 warnings until we fix size_t to int truncations. | 392 # Disable c4267 warnings until we fix size_t to int truncations. |
| 390 'msvs_disabled_warnings': [ 4267, ], | 393 'msvs_disabled_warnings': [ 4267, ], |
| 391 }, | 394 }, |
| 392 { | 395 { |
| 393 # GN version: //content/renderer and //content/public/renderer | 396 # GN version: //content/renderer and //content/public/renderer |
| 394 'target_name': 'content_renderer', | 397 'target_name': 'content_renderer', |
| 395 'type': 'none', | 398 'type': 'none', |
| 396 'dependencies': ['content'], | 399 'dependencies': ['content'], |
| 400 'export_dependent_settings': ['content'], |
| 397 }, | 401 }, |
| 398 { | 402 { |
| 399 # GN version: //content/utility | 403 # GN version: //content/utility |
| 400 'target_name': 'content_utility', | 404 'target_name': 'content_utility', |
| 401 'type': 'none', | 405 'type': 'none', |
| 402 'dependencies': ['content'], | 406 'dependencies': ['content'], |
| 403 'export_dependent_settings': ['content'], | 407 'export_dependent_settings': ['content'], |
| 404 }, | 408 }, |
| 405 ], | 409 ], |
| 406 }], | 410 }], |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 ], | 594 ], |
| 591 }, | 595 }, |
| 592 ], | 596 ], |
| 593 }], | 597 }], |
| 594 ], | 598 ], |
| 595 }, | 599 }, |
| 596 ], | 600 ], |
| 597 }], # OS == "android" | 601 }], # OS == "android" |
| 598 ], | 602 ], |
| 599 } | 603 } |
| OLD | NEW |