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

Side by Side Diff: content/content.gyp

Issue 1852593004: Remove content/plugin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_npapi_test_plugin
Patch Set: . Created 4 years, 8 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 | « content/child/BUILD.gn ('k') | content/content_shell.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 },
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'targets': [ 123 'targets': [
124 { 124 {
125 # GN version: //content 125 # GN version: //content
126 'target_name': 'content', 126 'target_name': 'content',
127 'type': 'none', 127 'type': 'none',
128 'dependencies': [ 128 'dependencies': [
129 'content_browser', 129 'content_browser',
130 'content_child', 130 'content_child',
131 'content_common', 131 'content_common',
132 'content_gpu', 132 'content_gpu',
133 'content_plugin',
134 'content_ppapi_plugin', 133 'content_ppapi_plugin',
135 'content_renderer', 134 'content_renderer',
136 'content_utility', 135 'content_utility',
137 ], 136 ],
138 'export_dependent_settings': [ 137 'export_dependent_settings': [
139 'content_common', 138 'content_common',
140 ], 139 ],
141 }, 140 },
142 { 141 {
143 # GN version: //content/app:browser 142 # GN version: //content/app:browser
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 'variables': { 'enable_wexit_time_destructors': 1, }, 266 'variables': { 'enable_wexit_time_destructors': 1, },
268 'includes': [ 267 'includes': [
269 'content_gpu.gypi', 268 'content_gpu.gypi',
270 ], 269 ],
271 'dependencies': [ 270 'dependencies': [
272 'content_child', 271 'content_child',
273 'content_common', 272 'content_common',
274 ], 273 ],
275 }, 274 },
276 { 275 {
277 # GN version: //content/plugin and //content/public/plugin
278 'target_name': 'content_plugin',
279 'type': 'static_library',
280 'variables': { 'enable_wexit_time_destructors': 1, },
281 'includes': [
282 'content_plugin.gypi',
283 ],
284 'dependencies': [
285 'content_child',
286 'content_common',
287 ],
288 },
289 {
290 # GN version: //content/ppapi_plugin 276 # GN version: //content/ppapi_plugin
291 'target_name': 'content_ppapi_plugin', 277 'target_name': 'content_ppapi_plugin',
292 'type': 'static_library', 278 'type': 'static_library',
293 'variables': { 'enable_wexit_time_destructors': 1, }, 279 'variables': { 'enable_wexit_time_destructors': 1, },
294 'includes': [ 280 'includes': [
295 'content_ppapi_plugin.gypi', 281 'content_ppapi_plugin.gypi',
296 ], 282 ],
297 # Disable c4267 warnings until we fix size_t to int truncations. 283 # Disable c4267 warnings until we fix size_t to int truncations.
298 'msvs_disabled_warnings': [ 4267, ], 284 'msvs_disabled_warnings': [ 4267, ],
299 }, 285 },
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', 344 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune',
359 ], 345 ],
360 }], 346 }],
361 ], 347 ],
362 'includes': [ 348 'includes': [
363 'content_app.gypi', 349 'content_app.gypi',
364 'content_browser.gypi', 350 'content_browser.gypi',
365 'content_child.gypi', 351 'content_child.gypi',
366 'content_common.gypi', 352 'content_common.gypi',
367 'content_gpu.gypi', 353 'content_gpu.gypi',
368 'content_plugin.gypi',
369 'content_ppapi_plugin.gypi', 354 'content_ppapi_plugin.gypi',
370 'content_renderer.gypi', 355 'content_renderer.gypi',
371 'content_utility.gypi', 356 'content_utility.gypi',
372 ], 357 ],
373 'msvs_settings': { 358 'msvs_settings': {
374 'VCLinkerTool': { 359 'VCLinkerTool': {
375 'conditions': [ 360 'conditions': [
376 ['incremental_chrome_dll==1', { 361 ['incremental_chrome_dll==1', {
377 'UseLibraryDependencyInputs': "true", 362 'UseLibraryDependencyInputs': "true",
378 }], 363 }],
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 'type': 'none', 411 'type': 'none',
427 'dependencies': ['content'], 412 'dependencies': ['content'],
428 }, 413 },
429 { 414 {
430 # GN version: //content/gpu 415 # GN version: //content/gpu
431 'target_name': 'content_gpu', 416 'target_name': 'content_gpu',
432 'type': 'none', 417 'type': 'none',
433 'dependencies': ['content'], 418 'dependencies': ['content'],
434 }, 419 },
435 { 420 {
436 # GN version: //content/plugin
437 'target_name': 'content_plugin',
438 'type': 'none',
439 'dependencies': ['content'],
440 },
441 {
442 # GN version: //content/ppapi_plugin 421 # GN version: //content/ppapi_plugin
443 'target_name': 'content_ppapi_plugin', 422 'target_name': 'content_ppapi_plugin',
444 'type': 'none', 423 'type': 'none',
445 'dependencies': ['content'], 424 'dependencies': ['content'],
446 # Disable c4267 warnings until we fix size_t to int truncations. 425 # Disable c4267 warnings until we fix size_t to int truncations.
447 'msvs_disabled_warnings': [ 4267, ], 426 'msvs_disabled_warnings': [ 4267, ],
448 }, 427 },
449 { 428 {
450 # GN version: //content/renderer and //content/public/renderer 429 # GN version: //content/renderer and //content/public/renderer
451 'target_name': 'content_renderer', 430 'target_name': 'content_renderer',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 }, 682 },
704 'includes': [ 683 'includes': [
705 '../build/android/copy_ex.gypi', 684 '../build/android/copy_ex.gypi',
706 '../build/android/v8_external_startup_data_arch_suffix.gypi', 685 '../build/android/v8_external_startup_data_arch_suffix.gypi',
707 ], 686 ],
708 }, 687 },
709 ], 688 ],
710 }], # OS == "android" 689 }], # OS == "android"
711 ], 690 ],
712 } 691 }
OLDNEW
« no previous file with comments | « content/child/BUILD.gn ('k') | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698