Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(804)

Side by Side Diff: content/content.gyp

Issue 1641163002: Preparation CL for H264 support in WebRTC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing deps webrtc_h264, renderer_features. renderer_features.h to private_renderer_webrtc_sources to avoid analyze failure. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 },
11 'target_defaults': { 11 'target_defaults': {
12 'defines': ['CONTENT_IMPLEMENTATION'], 12 'defines': ['CONTENT_IMPLEMENTATION'],
13 'conditions': [ 13 'conditions': [
14 # TODO(jschuh): Remove this after crbug.com/173851 gets fixed. 14 # TODO(jschuh): Remove this after crbug.com/173851 gets fixed.
15 ['OS=="win" and target_arch=="x64"', { 15 ['OS=="win" and target_arch=="x64"', {
16 'msvs_settings': { 16 'msvs_settings': {
17 'VCCLCompilerTool': { 17 'VCCLCompilerTool': {
18 'AdditionalOptions': ['/bigobj'], 18 'AdditionalOptions': ['/bigobj'],
19 }, 19 },
20 }, 20 },
21 }], 21 }],
22 ], 22 ],
23 }, 23 },
24 'targets': [
25 {
26 # GN version: //content/renderer:renderer_features
27 'target_name': 'renderer_features',
28 'includes': [
29 '../build/buildflag_header.gypi',
30 '../third_party/webrtc/build/common.gypi',
31 ],
32 'conditions': [
33 # This conditional looks insane, but without it |rtc_use_h264| is not
34 # recognized as defined. Might have something to do with scopes. Moving
35 # the inclusion of third_party/webrtc/build/common.gypi to outside of
36 # 'targets' is not an option, then we get compile errors.
tommi (sloooow) - chröme 2016/02/04 10:59:47 Please file a bug to fix this and add a link to it
hbos_chromium 2016/02/04 11:14:21 Done.
37 ['1==1', {
38 'variables': {
39 'buildflag_header_path': 'content/renderer/renderer_features.h',
40 'buildflag_flags': [
41 'RTC_USE_H264=<(rtc_use_h264)',
42 ],
43 },
44 }],
45 ],
46 },
47 ],
24 'conditions': [ 48 'conditions': [
25 ['OS != "ios"', { 49 ['OS != "ios"', {
26 'includes': [ 50 'includes': [
27 '../build/win_precompile.gypi', 51 '../build/win_precompile.gypi',
28 'content_resources.gypi', 52 'content_resources.gypi',
29 ], 53 ],
30 }], 54 }],
31 ['OS == "win"', { 55 ['OS == "win"', {
32 'targets': [ 56 'targets': [
33 { 57 {
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 }, 276 },
253 { 277 {
254 # GN version: //content/renderer and //content/public/renderer 278 # GN version: //content/renderer and //content/public/renderer
255 'target_name': 'content_renderer', 279 'target_name': 'content_renderer',
256 'type': 'static_library', 280 'type': 'static_library',
257 'variables': { 'enable_wexit_time_destructors': 1, }, 281 'variables': { 'enable_wexit_time_destructors': 1, },
258 'includes': [ 282 'includes': [
259 'content_renderer.gypi', 283 'content_renderer.gypi',
260 ], 284 ],
261 'dependencies': [ 285 'dependencies': [
286 '../third_party/webrtc/modules/modules.gyp:webrtc_h264',
262 'content_child', 287 'content_child',
263 'content_common', 288 'content_common',
264 'content_resources', 289 'content_resources',
290 'renderer_features',
265 ], 291 ],
266 'export_dependent_settings': [ 292 'export_dependent_settings': [
267 'content_common', 293 'content_common',
268 ], 294 ],
269 'conditions': [ 295 'conditions': [
270 ['chromium_enable_vtune_jit_for_v8==1', { 296 ['chromium_enable_vtune_jit_for_v8==1', {
271 'dependencies': [ 297 'dependencies': [
272 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', 298 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune',
273 ], 299 ],
274 }], 300 }],
(...skipping 18 matching lines...) Expand all
293 ], 319 ],
294 }, 320 },
295 { # component != static_library 321 { # component != static_library
296 'targets': [ 322 'targets': [
297 { 323 {
298 # GN version: //content 324 # GN version: //content
299 'target_name': 'content', 325 'target_name': 'content',
300 'type': 'shared_library', 326 'type': 'shared_library',
301 'variables': { 'enable_wexit_time_destructors': 1, }, 327 'variables': { 'enable_wexit_time_destructors': 1, },
302 'dependencies': [ 328 'dependencies': [
329 '../third_party/webrtc/modules/modules.gyp:webrtc_h264',
303 'content_resources', 330 'content_resources',
331 'renderer_features',
304 ], 332 ],
305 'conditions': [ 333 'conditions': [
306 ['chromium_enable_vtune_jit_for_v8==1', { 334 ['chromium_enable_vtune_jit_for_v8==1', {
307 'dependencies': [ 335 'dependencies': [
308 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', 336 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune',
309 ], 337 ],
310 }], 338 }],
311 ], 339 ],
312 'includes': [ 340 'includes': [
313 'content_app.gypi', 341 'content_app.gypi',
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 }, 676 },
649 'includes': [ 677 'includes': [
650 '../build/android/copy_ex.gypi', 678 '../build/android/copy_ex.gypi',
651 '../build/android/v8_external_startup_data_arch_suffix.gypi', 679 '../build/android/v8_external_startup_data_arch_suffix.gypi',
652 ], 680 ],
653 }, 681 },
654 ], 682 ],
655 }], # OS == "android" 683 }], # OS == "android"
656 ], 684 ],
657 } 685 }
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698