| 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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 ], | 277 ], |
| 278 }, | 278 }, |
| 279 { | 279 { |
| 280 # GN version: //content/utility and //content/public/utility | 280 # GN version: //content/utility and //content/public/utility |
| 281 'target_name': 'content_utility', | 281 'target_name': 'content_utility', |
| 282 'type': 'static_library', | 282 'type': 'static_library', |
| 283 'variables': { 'enable_wexit_time_destructors': 1, }, | 283 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 284 'includes': [ | 284 'includes': [ |
| 285 'content_utility.gypi', | 285 'content_utility.gypi', |
| 286 ], | 286 ], |
| 287 'sources': [ |
| 288 '<@(public_utility_sources)', |
| 289 '<@(utility_sources)', |
| 290 ], |
| 287 'dependencies': [ | 291 'dependencies': [ |
| 288 'content_child', | 292 'content_child', |
| 289 'content_common', | 293 'content_common', |
| 290 ], | 294 ], |
| 291 }, | 295 }, |
| 292 ], | 296 ], |
| 293 }], | 297 }], |
| 294 ], | 298 ], |
| 295 }, | 299 }, |
| 296 { # component != static_library | 300 { # component != static_library |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 ], | 622 ], |
| 619 }, | 623 }, |
| 620 ], | 624 ], |
| 621 }], | 625 }], |
| 622 ], | 626 ], |
| 623 }, | 627 }, |
| 624 ], | 628 ], |
| 625 }], # OS == "android" | 629 }], # OS == "android" |
| 626 ], | 630 ], |
| 627 } | 631 } |
| OLD | NEW |