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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 ['java_bridge==1', { | 226 ['java_bridge==1', { |
227 'dependencies': [ | 227 'dependencies': [ |
228 'content_child', | 228 'content_child', |
229 ] | 229 ] |
230 }], | 230 }], |
231 ['OS=="android"', { | 231 ['OS=="android"', { |
232 'dependencies': [ | 232 'dependencies': [ |
233 'content_utility', | 233 'content_utility', |
234 ], | 234 ], |
235 }], | 235 }], |
| 236 # Shard this target into parts to work around linker limitations |
| 237 # on link time code generation builds. See crbug.com/616946 |
| 238 ['OS=="win" and buildtype=="Official"', { |
| 239 'msvs_shard': 5, |
| 240 }], |
236 ], | 241 ], |
237 }, | 242 }, |
238 { | 243 { |
239 # GN version: //content/common and //content/public/common | 244 # GN version: //content/common and //content/public/common |
240 'target_name': 'content_common', | 245 'target_name': 'content_common', |
241 'type': 'static_library', | 246 'type': 'static_library', |
242 'variables': { 'enable_wexit_time_destructors': 1, }, | 247 'variables': { 'enable_wexit_time_destructors': 1, }, |
243 'dependencies': [ | 248 'dependencies': [ |
244 'content_resources', | 249 'content_resources', |
245 ], | 250 ], |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 }, | 700 }, |
696 'includes': [ | 701 'includes': [ |
697 '../build/android/copy_ex.gypi', | 702 '../build/android/copy_ex.gypi', |
698 '../build/android/v8_external_startup_data_arch_suffix.gypi', | 703 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
699 ], | 704 ], |
700 }, | 705 }, |
701 ], | 706 ], |
702 }], # OS == "android" | 707 }], # OS == "android" |
703 ], | 708 ], |
704 } | 709 } |
OLD | NEW |