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

Side by Side Diff: chrome/chrome.gyp

Issue 206017: Issue 172109: Enable scavenging in RenderThread::IdleHandler.... (Closed) Base URL: svn://chrome-svn/chrome/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 2914 matching lines...) Expand 10 before | Expand all | Expand 10 after
2925 'link_settings': { 2925 'link_settings': {
2926 'mac_bundle_resources': [ 2926 'mac_bundle_resources': [
2927 'renderer/renderer.sb', 2927 'renderer/renderer.sb',
2928 ], 2928 ],
2929 }, 2929 },
2930 'conditions': [ 2930 'conditions': [
2931 # Linux-specific rules. 2931 # Linux-specific rules.
2932 ['OS=="linux"', { 2932 ['OS=="linux"', {
2933 'dependencies': [ 2933 'dependencies': [
2934 '../build/linux/system.gyp:gtk', 2934 '../build/linux/system.gyp:gtk',
2935 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2936 ],
2937 'export_dependent_settings': [
2938 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2935 ], 2939 ],
2936 }], 2940 }],
2937 # Windows-specific rules. 2941 # Windows-specific rules.
2938 ['OS=="win"', { 2942 ['OS=="win"', {
2939 'include_dirs': [ 2943 'include_dirs': [
2940 'third_party/wtl/include', 2944 'third_party/wtl/include',
2941 ], 2945 ],
2946 'dependencies': [
2947 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2948 ],
2949 'export_dependent_settings': [
2950 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
2951 ],
2942 },], 2952 },],
2943 ], 2953 ],
2944 }, 2954 },
2945 { 2955 {
2946 'target_name': 'utility', 2956 'target_name': 'utility',
2947 'type': '<(library)', 2957 'type': '<(library)',
2948 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7', 2958 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7',
2949 'dependencies': [ 2959 'dependencies': [
2950 '../base/base.gyp:base', 2960 '../base/base.gyp:base',
2951 '../skia/skia.gyp:skia', 2961 '../skia/skia.gyp:skia',
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
3588 'common', 3598 'common',
3589 'renderer', 3599 'renderer',
3590 'chrome_resources', 3600 'chrome_resources',
3591 'chrome_strings', 3601 'chrome_strings',
3592 'theme_resources', 3602 'theme_resources',
3593 '../base/base.gyp:test_support_base', 3603 '../base/base.gyp:test_support_base',
3594 '../skia/skia.gyp:skia', 3604 '../skia/skia.gyp:skia',
3595 '../testing/gmock.gyp:gmock', 3605 '../testing/gmock.gyp:gmock',
3596 '../testing/gtest.gyp:gtest', 3606 '../testing/gtest.gyp:gtest',
3597 ], 3607 ],
3608 'export_dependent_settings': [
3609 'renderer',
3610 ],
3598 'include_dirs': [ 3611 'include_dirs': [
3599 '..', 3612 '..',
3600 ], 3613 ],
3601 'sources': [ 3614 'sources': [
3602 # TODO: these should live here but are currently used by 3615 # TODO: these should live here but are currently used by
3603 # production code code in libbrowser (above). 3616 # production code code in libbrowser (above).
3604 #'browser/net/url_request_mock_http_job.cc', 3617 #'browser/net/url_request_mock_http_job.cc',
3605 #'browser/net/url_request_mock_http_job.h', 3618 #'browser/net/url_request_mock_http_job.h',
3606 'browser/net/url_request_mock_net_error_job.cc', 3619 'browser/net/url_request_mock_net_error_job.cc',
3607 'browser/net/url_request_mock_net_error_job.h', 3620 'browser/net/url_request_mock_net_error_job.h',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
3668 'target_name': 'test_support_ui', 3681 'target_name': 'test_support_ui',
3669 'type': '<(library)', 3682 'type': '<(library)',
3670 'dependencies': [ 3683 'dependencies': [
3671 'test_support_common', 3684 'test_support_common',
3672 'chrome_resources', 3685 'chrome_resources',
3673 'chrome_strings', 3686 'chrome_strings',
3674 'theme_resources', 3687 'theme_resources',
3675 '../skia/skia.gyp:skia', 3688 '../skia/skia.gyp:skia',
3676 '../testing/gtest.gyp:gtest', 3689 '../testing/gtest.gyp:gtest',
3677 ], 3690 ],
3691 'export_dependent_settings': [
3692 'test_support_common',
3693 ],
3678 'include_dirs': [ 3694 'include_dirs': [
3679 '..', 3695 '..',
3680 ], 3696 ],
3681 'sources': [ 3697 'sources': [
3682 'test/automated_ui_tests/automated_ui_test_base.cc', 3698 'test/automated_ui_tests/automated_ui_test_base.cc',
3683 'test/automated_ui_tests/automated_ui_test_base.h', 3699 'test/automated_ui_tests/automated_ui_test_base.h',
3684 'test/testing_browser_process.h', 3700 'test/testing_browser_process.h',
3685 'test/ui/javascript_test_util.cc', 3701 'test/ui/javascript_test_util.cc',
3686 'test/ui/npapi_test_helper.cc', 3702 'test/ui/npapi_test_helper.cc',
3687 'test/ui/npapi_test_helper.h', 3703 'test/ui/npapi_test_helper.h',
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after
4666 # up actual Chromium functionality into this .dll. 4682 # up actual Chromium functionality into this .dll.
4667 'chrome_dll_version', 4683 'chrome_dll_version',
4668 'chrome_resources', 4684 'chrome_resources',
4669 'installer/installer.gyp:installer_util_strings', 4685 'installer/installer.gyp:installer_util_strings',
4670 'theme_dll', 4686 'theme_dll',
4671 'worker', 4687 'worker',
4672 '../printing/printing.gyp:printing', 4688 '../printing/printing.gyp:printing',
4673 '../net/net.gyp:net_resources', 4689 '../net/net.gyp:net_resources',
4674 '../build/util/support/support.gyp:*', 4690 '../build/util/support/support.gyp:*',
4675 '../third_party/cld/cld.gyp:cld', 4691 '../third_party/cld/cld.gyp:cld',
4676 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc',
4677 '../views/views.gyp:views', 4692 '../views/views.gyp:views',
4678 '../webkit/webkit.gyp:webkit_resources', 4693 '../webkit/webkit.gyp:webkit_resources',
4679 '../gears/gears.gyp:gears', 4694 '../gears/gears.gyp:gears',
4680 ], 4695 ],
4681 'defines': [ 4696 'defines': [
4682 'CHROME_DLL', 4697 'CHROME_DLL',
4683 'BROWSER_DLL', 4698 'BROWSER_DLL',
4684 'RENDERER_DLL', 4699 'RENDERER_DLL',
4685 'PLUGIN_DLL', 4700 'PLUGIN_DLL',
4686 ], 4701 ],
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after
6110 # Use outputs of this action as inputs for the main target build. 6125 # Use outputs of this action as inputs for the main target build.
6111 # Seems as a misnomer but makes this happy on Linux (scons). 6126 # Seems as a misnomer but makes this happy on Linux (scons).
6112 'process_outputs_as_sources': 1, 6127 'process_outputs_as_sources': 1,
6113 }, 6128 },
6114 ], # 'actions' 6129 ], # 'actions'
6115 }, 6130 },
6116 ] 6131 ]
6117 }], 6132 }],
6118 ], # 'conditions' 6133 ], # 'conditions'
6119 } 6134 }
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