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

Side by Side Diff: content/content.gyp

Issue 411283002: Remove disable-embedded-shared-worker flag and shared worker process related codes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 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/common/process_type.cc ('k') | content/content_browser.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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 ], 51 ],
52 'conditions': [ 52 'conditions': [
53 ['OS != "ios"', { 53 ['OS != "ios"', {
54 'dependencies': [ 54 'dependencies': [
55 'content_child', 55 'content_child',
56 'content_gpu', 56 'content_gpu',
57 'content_plugin', 57 'content_plugin',
58 'content_ppapi_plugin', 58 'content_ppapi_plugin',
59 'content_renderer', 59 'content_renderer',
60 'content_utility', 60 'content_utility',
61 'content_worker',
62 ], 61 ],
63 }], 62 }],
64 ], 63 ],
65 }, 64 },
66 { 65 {
67 'target_name': 'content_app_browser', 66 'target_name': 'content_app_browser',
68 'type': 'static_library', 67 'type': 'static_library',
69 'variables': { 'enable_wexit_time_destructors': 1, }, 68 'variables': { 'enable_wexit_time_destructors': 1, },
70 'includes': [ 69 'includes': [
71 'content_app.gypi', 70 'content_app.gypi',
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'type': 'static_library', 245 'type': 'static_library',
247 'variables': { 'enable_wexit_time_destructors': 1, }, 246 'variables': { 'enable_wexit_time_destructors': 1, },
248 'includes': [ 247 'includes': [
249 'content_utility.gypi', 248 'content_utility.gypi',
250 ], 249 ],
251 'dependencies': [ 250 'dependencies': [
252 'content_child', 251 'content_child',
253 'content_common', 252 'content_common',
254 ], 253 ],
255 }, 254 },
256 {
257 # GN version: //content/worker
258 'target_name': 'content_worker',
259 'type': 'static_library',
260 'variables': { 'enable_wexit_time_destructors': 1, },
261 'includes': [
262 'content_worker.gypi',
263 ],
264 'dependencies': [
265 'content_child',
266 'content_common',
267 ],
268 },
269 ], 255 ],
270 }], 256 }],
271 ], 257 ],
272 }, 258 },
273 { # component != static_library 259 { # component != static_library
274 'targets': [ 260 'targets': [
275 { 261 {
276 'target_name': 'content', 262 'target_name': 'content',
277 'type': 'shared_library', 263 'type': 'shared_library',
278 'variables': { 'enable_wexit_time_destructors': 1, }, 264 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 10 matching lines...) Expand all
289 'includes': [ 275 'includes': [
290 'content_app.gypi', 276 'content_app.gypi',
291 'content_browser.gypi', 277 'content_browser.gypi',
292 'content_child.gypi', 278 'content_child.gypi',
293 'content_common.gypi', 279 'content_common.gypi',
294 'content_gpu.gypi', 280 'content_gpu.gypi',
295 'content_plugin.gypi', 281 'content_plugin.gypi',
296 'content_ppapi_plugin.gypi', 282 'content_ppapi_plugin.gypi',
297 'content_renderer.gypi', 283 'content_renderer.gypi',
298 'content_utility.gypi', 284 'content_utility.gypi',
299 'content_worker.gypi',
300 ], 285 ],
301 'msvs_settings': { 286 'msvs_settings': {
302 'VCLinkerTool': { 287 'VCLinkerTool': {
303 'conditions': [ 288 'conditions': [
304 ['incremental_chrome_dll==1', { 289 ['incremental_chrome_dll==1', {
305 'UseLibraryDependencyInputs': "true", 290 'UseLibraryDependencyInputs': "true",
306 }], 291 }],
307 ], 292 ],
308 }, 293 },
309 }, 294 },
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 'target_name': 'content_renderer', 349 'target_name': 'content_renderer',
365 'type': 'none', 350 'type': 'none',
366 'dependencies': ['content'], 351 'dependencies': ['content'],
367 }, 352 },
368 { 353 {
369 'target_name': 'content_utility', 354 'target_name': 'content_utility',
370 'type': 'none', 355 'type': 'none',
371 'dependencies': ['content'], 356 'dependencies': ['content'],
372 'export_dependent_settings': ['content'], 357 'export_dependent_settings': ['content'],
373 }, 358 },
374 {
375 'target_name': 'content_worker',
376 'type': 'none',
377 'dependencies': ['content'],
378 },
379 ], 359 ],
380 }], 360 }],
381 ['OS == "android"', { 361 ['OS == "android"', {
382 'targets': [ 362 'targets': [
383 { 363 {
384 'target_name': 'common_aidl', 364 'target_name': 'common_aidl',
385 'type': 'none', 365 'type': 'none',
386 'variables': { 366 'variables': {
387 'aidl_interface_file': 'public/android/java/src/org/chromium/content /common/common.aidl', 367 'aidl_interface_file': 'public/android/java/src/org/chromium/content /common/common.aidl',
388 'aidl_import_include': 'public/android/java/src', 368 'aidl_import_include': 'public/android/java/src',
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 'browser/gamepad/canonical_axis_index_list.h', 574 'browser/gamepad/canonical_axis_index_list.h',
595 'browser/gamepad/canonical_button_index_list.h', 575 'browser/gamepad/canonical_button_index_list.h',
596 ], 576 ],
597 }, 577 },
598 'includes': [ '../build/android/java_cpp_template.gypi' ], 578 'includes': [ '../build/android/java_cpp_template.gypi' ],
599 }, 579 },
600 ], 580 ],
601 }], # OS == "android" 581 }], # OS == "android"
602 ], 582 ],
603 } 583 }
OLDNEW
« no previous file with comments | « content/common/process_type.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698