| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 'includes': [ | 84 'includes': [ |
| 85 '../mojo/public/mojo_application_manifest.gypi', | 85 '../mojo/public/mojo_application_manifest.gypi', |
| 86 ], | 86 ], |
| 87 }, | 87 }, |
| 88 ], | 88 ], |
| 89 'includes': [ | 89 'includes': [ |
| 90 '../build/win_precompile.gypi', | 90 '../build/win_precompile.gypi', |
| 91 'content_resources.gypi', | 91 'content_resources.gypi', |
| 92 ], | 92 ], |
| 93 'conditions': [ | 93 'conditions': [ |
| 94 ['OS == "win"', { | |
| 95 'targets': [ | |
| 96 { | |
| 97 # GN: //content:sandbox_helper_win | |
| 98 'target_name': 'sandbox_helper_win', | |
| 99 'type': 'static_library', | |
| 100 'include_dirs': [ | |
| 101 '..', | |
| 102 ], | |
| 103 'dependencies': [ | |
| 104 '../sandbox/sandbox.gyp:sandbox', | |
| 105 ], | |
| 106 'sources': [ | |
| 107 'app/sandbox_helper_win.cc', | |
| 108 'public/app/sandbox_helper_win.h', | |
| 109 ], | |
| 110 } | |
| 111 ], | |
| 112 }], | |
| 113 # In component mode, we build all of content as a single DLL. | 94 # In component mode, we build all of content as a single DLL. |
| 114 # However, in the static mode, we need to build content as multiple | 95 # However, in the static mode, we need to build content as multiple |
| 115 # targets in order to prevent dependencies from getting introduced | 96 # targets in order to prevent dependencies from getting introduced |
| 116 # upstream unnecessarily (e.g., content_renderer depends on allocator | 97 # upstream unnecessarily (e.g., content_renderer depends on allocator |
| 117 # and chrome_exe depends on content_common but we don't want | 98 # and chrome_exe depends on content_common but we don't want |
| 118 # chrome_exe to have to depend on allocator). | 99 # chrome_exe to have to depend on allocator). |
| 119 ['component=="static_library"', { | 100 ['component=="static_library"', { |
| 120 'target_defines': [ | 101 'target_defines': [ |
| 121 'COMPILE_CONTENT_STATICALLY', | 102 'COMPILE_CONTENT_STATICALLY', |
| 122 ], | 103 ], |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 }, | 684 }, |
| 704 'includes': [ | 685 'includes': [ |
| 705 '../build/android/copy_ex.gypi', | 686 '../build/android/copy_ex.gypi', |
| 706 '../build/android/v8_external_startup_data_arch_suffix.gypi', | 687 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
| 707 ], | 688 ], |
| 708 }, | 689 }, |
| 709 ], | 690 ], |
| 710 }], # OS == "android" | 691 }], # OS == "android" |
| 711 ], | 692 ], |
| 712 } | 693 } |
| OLD | NEW |