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

Side by Side Diff: chrome/chrome.gyp

Issue 172109: Enable scavenging in RenderThread::IdleHandler. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/renderer/DEPS » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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, 7 'chromium_code': 1,
8 8
9 # Define the common dependencies that contain all the actual 9 # Define the common dependencies that contain all the actual
10 # Chromium functionality. This list gets pulled in below by 10 # Chromium functionality. This list gets pulled in below by
(...skipping 2908 matching lines...) Expand 10 before | Expand all | Expand 10 after
2919 'link_settings': { 2919 'link_settings': {
2920 'mac_bundle_resources': [ 2920 'mac_bundle_resources': [
2921 'renderer/renderer.sb', 2921 'renderer/renderer.sb',
2922 ], 2922 ],
2923 }, 2923 },
2924 'conditions': [ 2924 'conditions': [
2925 # Linux-specific rules. 2925 # Linux-specific rules.
2926 ['OS=="linux"', { 2926 ['OS=="linux"', {
2927 'dependencies': [ 2927 'dependencies': [
2928 '../build/linux/system.gyp:gtk', 2928 '../build/linux/system.gyp:gtk',
2929 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2930 ],
2931 'export_dependent_settings': [
2932 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2929 ], 2933 ],
2930 }], 2934 }],
2931 # Windows-specific rules. 2935 # Windows-specific rules.
2932 ['OS=="win"', { 2936 ['OS=="win"', {
2933 'include_dirs': [ 2937 'include_dirs': [
2934 'third_party/wtl/include', 2938 'third_party/wtl/include',
2935 ], 2939 ],
2940 'dependencies': [
2941 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2942 ],
2943 'export_dependent_settings': [
2944 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2945 ],
2936 },], 2946 },],
2937 ], 2947 ],
2938 }, 2948 },
2939 { 2949 {
2940 'target_name': 'utility', 2950 'target_name': 'utility',
2941 'type': '<(library)', 2951 'type': '<(library)',
2942 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7', 2952 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7',
2943 'dependencies': [ 2953 'dependencies': [
2944 '../base/base.gyp:base', 2954 '../base/base.gyp:base',
2945 '../skia/skia.gyp:skia', 2955 '../skia/skia.gyp:skia',
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
3582 'common', 3592 'common',
3583 'renderer', 3593 'renderer',
3584 'chrome_resources', 3594 'chrome_resources',
3585 'chrome_strings', 3595 'chrome_strings',
3586 'theme_resources', 3596 'theme_resources',
3587 '../base/base.gyp:test_support_base', 3597 '../base/base.gyp:test_support_base',
3588 '../skia/skia.gyp:skia', 3598 '../skia/skia.gyp:skia',
3589 '../testing/gmock.gyp:gmock', 3599 '../testing/gmock.gyp:gmock',
3590 '../testing/gtest.gyp:gtest', 3600 '../testing/gtest.gyp:gtest',
3591 ], 3601 ],
3602 'export_dependent_settings': [
3603 'renderer',
3604 ],
3592 'include_dirs': [ 3605 'include_dirs': [
3593 '..', 3606 '..',
3594 ], 3607 ],
3595 'sources': [ 3608 'sources': [
3596 # TODO: these should live here but are currently used by 3609 # TODO: these should live here but are currently used by
3597 # production code code in libbrowser (above). 3610 # production code code in libbrowser (above).
3598 #'browser/net/url_request_mock_http_job.cc', 3611 #'browser/net/url_request_mock_http_job.cc',
3599 #'browser/net/url_request_mock_http_job.h', 3612 #'browser/net/url_request_mock_http_job.h',
3600 'browser/net/url_request_mock_net_error_job.cc', 3613 'browser/net/url_request_mock_net_error_job.cc',
3601 'browser/net/url_request_mock_net_error_job.h', 3614 'browser/net/url_request_mock_net_error_job.h',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
3662 'target_name': 'test_support_ui', 3675 'target_name': 'test_support_ui',
3663 'type': '<(library)', 3676 'type': '<(library)',
3664 'dependencies': [ 3677 'dependencies': [
3665 'test_support_common', 3678 'test_support_common',
3666 'chrome_resources', 3679 'chrome_resources',
3667 'chrome_strings', 3680 'chrome_strings',
3668 'theme_resources', 3681 'theme_resources',
3669 '../skia/skia.gyp:skia', 3682 '../skia/skia.gyp:skia',
3670 '../testing/gtest.gyp:gtest', 3683 '../testing/gtest.gyp:gtest',
3671 ], 3684 ],
3685 'export_dependent_settings': [
3686 'test_support_common',
3687 ],
3672 'include_dirs': [ 3688 'include_dirs': [
3673 '..', 3689 '..',
3674 ], 3690 ],
3675 'sources': [ 3691 'sources': [
3676 'test/automated_ui_tests/automated_ui_test_base.cc', 3692 'test/automated_ui_tests/automated_ui_test_base.cc',
3677 'test/automated_ui_tests/automated_ui_test_base.h', 3693 'test/automated_ui_tests/automated_ui_test_base.h',
3678 'test/testing_browser_process.h', 3694 'test/testing_browser_process.h',
3679 'test/ui/javascript_test_util.cc', 3695 'test/ui/javascript_test_util.cc',
3680 'test/ui/npapi_test_helper.cc', 3696 'test/ui/npapi_test_helper.cc',
3681 'test/ui/npapi_test_helper.h', 3697 'test/ui/npapi_test_helper.h',
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
4659 # up actual Chromium functionality into this .dll. 4675 # up actual Chromium functionality into this .dll.
4660 'chrome_dll_version', 4676 'chrome_dll_version',
4661 'chrome_resources', 4677 'chrome_resources',
4662 'installer/installer.gyp:installer_util_strings', 4678 'installer/installer.gyp:installer_util_strings',
4663 'theme_dll', 4679 'theme_dll',
4664 'worker', 4680 'worker',
4665 '../printing/printing.gyp:printing', 4681 '../printing/printing.gyp:printing',
4666 '../net/net.gyp:net_resources', 4682 '../net/net.gyp:net_resources',
4667 '../build/util/support/support.gyp:*', 4683 '../build/util/support/support.gyp:*',
4668 '../third_party/cld/cld.gyp:cld', 4684 '../third_party/cld/cld.gyp:cld',
4669 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
4670 '../views/views.gyp:views', 4685 '../views/views.gyp:views',
4671 '../webkit/webkit.gyp:webkit_resources', 4686 '../webkit/webkit.gyp:webkit_resources',
4672 '../gears/gears.gyp:gears', 4687 '../gears/gears.gyp:gears',
4673 ], 4688 ],
4674 'defines': [ 4689 'defines': [
4675 'CHROME_DLL', 4690 'CHROME_DLL',
4676 'BROWSER_DLL', 4691 'BROWSER_DLL',
4677 'RENDERER_DLL', 4692 'RENDERER_DLL',
4678 'PLUGIN_DLL', 4693 'PLUGIN_DLL',
4679 ], 4694 ],
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after
6103 # Use outputs of this action as inputs for the main target build. 6118 # Use outputs of this action as inputs for the main target build.
6104 # Seems as a misnomer but makes this happy on Linux (scons). 6119 # Seems as a misnomer but makes this happy on Linux (scons).
6105 'process_outputs_as_sources': 1, 6120 'process_outputs_as_sources': 1,
6106 }, 6121 },
6107 ], # 'actions' 6122 ], # 'actions'
6108 }, 6123 },
6109 ] 6124 ]
6110 }], 6125 }],
6111 ], # 'conditions' 6126 ], # 'conditions'
6112 } 6127 }
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698