| 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 }, | 9 }, |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 'variables': { | 84 'variables': { |
| 85 'application_type': 'exe', | 85 'application_type': 'exe', |
| 86 'application_name': 'content_renderer', | 86 'application_name': 'content_renderer', |
| 87 'source_manifest': '<(DEPTH)/content/public/app/mojo/content_renderer_ma
nifest.json', | 87 'source_manifest': '<(DEPTH)/content/public/app/mojo/content_renderer_ma
nifest.json', |
| 88 }, | 88 }, |
| 89 'includes': [ | 89 'includes': [ |
| 90 '../mojo/public/mojo_application_manifest.gypi', | 90 '../mojo/public/mojo_application_manifest.gypi', |
| 91 ], | 91 ], |
| 92 'hard_dependency': 1, | 92 'hard_dependency': 1, |
| 93 }, | 93 }, |
| 94 { |
| 95 # GN version: //content/public/app:gpu_manifest |
| 96 'target_name': 'content_app_gpu_manifest', |
| 97 'type': 'none', |
| 98 'variables': { |
| 99 'application_type': 'exe', |
| 100 'application_name': 'content_gpu', |
| 101 'source_manifest': '<(DEPTH)/content/public/app/mojo/content_gpu_manifes
t.json', |
| 102 }, |
| 103 'includes': [ |
| 104 '../mojo/public/mojo_application_manifest.gypi', |
| 105 ], |
| 106 'hard_dependency': 1, |
| 107 }, |
| 94 ], | 108 ], |
| 95 'includes': [ | 109 'includes': [ |
| 96 '../build/win_precompile.gypi', | 110 '../build/win_precompile.gypi', |
| 97 'content_resources.gypi', | 111 'content_resources.gypi', |
| 98 ], | 112 ], |
| 99 'conditions': [ | 113 'conditions': [ |
| 100 ['OS == "win"', { | 114 ['OS == "win"', { |
| 101 'targets': [ | 115 'targets': [ |
| 102 { | 116 { |
| 103 # GN: //content:sandbox_helper_win | 117 # GN: //content:sandbox_helper_win |
| (...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 }, | 714 }, |
| 701 'includes': [ | 715 'includes': [ |
| 702 '../build/android/copy_ex.gypi', | 716 '../build/android/copy_ex.gypi', |
| 703 '../build/android/v8_external_startup_data_arch_suffix.gypi', | 717 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
| 704 ], | 718 ], |
| 705 }, | 719 }, |
| 706 ], | 720 ], |
| 707 }], # OS == "android" | 721 }], # OS == "android" |
| 708 ], | 722 ], |
| 709 } | 723 } |
| OLD | NEW |