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

Side by Side Diff: chrome/chrome.gyp

Issue 112068: chrome.gyp fixes to preserve various build behaviors... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 | no next file » | 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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
11 # Linux or Mac, and into chrome.dll on Windows. 11 # Linux or Mac, and into chrome.dll on Windows.
12 'chromium_dependencies': [ 12 'chromium_dependencies': [
13 'common', 13 'common',
14 'browser', 14 'browser',
15 'renderer', 15 'renderer',
16 'utility', 16 'utility',
17 '../printing/printing.gyp:printing', 17 '../printing/printing.gyp:printing',
18 '../webkit/webkit.gyp:inspector_resources', 18 '../webkit/webkit.gyp:inspector_resources',
19 ], 19 ],
20 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
20 }, 21 },
21 'includes': [ 22 'includes': [
22 '../build/common.gypi', 23 '../build/common.gypi',
23 ], 24 ],
24 'target_defaults': { 25 'target_defaults': {
25 'sources/': [ 26 'sources/': [
26 ['exclude', '/(cocoa|gtk|win)/'], 27 ['exclude', '/(cocoa|gtk|win)/'],
27 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.( cc|mm?)$'], 28 ['exclude', '_(cocoa|gtk|linux|mac|posix|skia|win|views|x)(_unittest)?\\.( cc|mm?)$'],
28 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'], 29 ['exclude', '/(gtk|win|x11)_[^/]*\\.cc$'],
29 ], 30 ],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 'dependencies': ['../build/win/system.gyp:cygwin'], 163 'dependencies': ['../build/win/system.gyp:cygwin'],
163 }], 164 }],
164 ], 165 ],
165 }, 166 },
166 { 167 {
167 # theme_resources also generates a .cc file, so it can't use the rules abo ve. 168 # theme_resources also generates a .cc file, so it can't use the rules abo ve.
168 'target_name': 'theme_resources', 169 'target_name': 'theme_resources',
169 'type': 'none', 170 'type': 'none',
170 'variables': { 171 'variables': {
171 'grit_path': '../tools/grit/grit.py', 172 'grit_path': '../tools/grit/grit.py',
172 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
173 }, 173 },
174 'actions': [ 174 'actions': [
175 { 175 {
176 'action_name': 'theme_resources', 176 'action_name': 'theme_resources',
177 'variables': { 177 'variables': {
178 'input_path': 'app/theme/theme_resources.grd', 178 'input_path': 'app/theme/theme_resources.grd',
179 'conditions': [ 179 'conditions': [
180 ['branding=="Chrome"', { 180 ['branding=="Chrome"', {
181 # TODO(mmoss) The .grd files look for _google_chrome, but for 181 # TODO(mmoss) The .grd files look for _google_chrome, but for
182 # consistency they should look for GOOGLE_CHROME_BUILD like C++. 182 # consistency they should look for GOOGLE_CHROME_BUILD like C++.
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 'common/visitedlink_common.h', 415 'common/visitedlink_common.h',
416 'common/webkit_param_traits.h', 416 'common/webkit_param_traits.h',
417 'common/win_safe_util.cc', 417 'common/win_safe_util.cc',
418 'common/win_safe_util.h', 418 'common/win_safe_util.h',
419 'common/worker_thread_ticker.cc', 419 'common/worker_thread_ticker.cc',
420 'common/worker_thread_ticker.h', 420 'common/worker_thread_ticker.h',
421 'common/x11_util.cc', 421 'common/x11_util.cc',
422 'common/x11_util.h', 422 'common/x11_util.h',
423 'common/x11_util_internal.h', 423 'common/x11_util_internal.h',
424 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', 424 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
425
426 'tools/build/win/precompiled.cc',
427 'tools/build/win/precompiled.h',
425 ], 428 ],
426 'direct_dependent_settings': { 429 'direct_dependent_settings': {
427 'include_dirs': [ 430 'include_dirs': [
428 '..', 431 '..',
429 ], 432 ],
430 }, 433 },
431 'export_dependent_settings': [ 434 'export_dependent_settings': [
432 '../app/app.gyp:app_base', 435 '../app/app.gyp:app_base',
433 ], 436 ],
437 'configurations': {
438 'Debug': {
439 'msvs_precompiled_header': 'tools/build/win/precompiled.h',
440 'msvs_precompiled_source': 'tools/build/win/precompiled.cc',
441 },
442 },
434 'conditions': [ 443 'conditions': [
435 ['OS=="linux"', { 444 ['OS=="linux"', {
436 'dependencies': [ 445 'dependencies': [
437 '../build/linux/system.gyp:gtk', 446 '../build/linux/system.gyp:gtk',
438 ], 447 ],
439 'link_settings': { 448 'link_settings': {
440 'libraries': [ 449 'libraries': [
441 '-lX11', 450 '-lX11',
442 '-lXrender', 451 '-lXrender',
443 '-lXext', 452 '-lXext',
(...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1846 'plugin/plugin_channel.h', 1855 'plugin/plugin_channel.h',
1847 'plugin/plugin_channel_base.cc', 1856 'plugin/plugin_channel_base.cc',
1848 'plugin/plugin_channel_base.h', 1857 'plugin/plugin_channel_base.h',
1849 'plugin/plugin_main.cc', 1858 'plugin/plugin_main.cc',
1850 'plugin/plugin_thread.cc', 1859 'plugin/plugin_thread.cc',
1851 'plugin/plugin_thread.h', 1860 'plugin/plugin_thread.h',
1852 'plugin/webplugin_delegate_stub.cc', 1861 'plugin/webplugin_delegate_stub.cc',
1853 'plugin/webplugin_delegate_stub.h', 1862 'plugin/webplugin_delegate_stub.h',
1854 'plugin/webplugin_proxy.cc', 1863 'plugin/webplugin_proxy.cc',
1855 'plugin/webplugin_proxy.h', 1864 'plugin/webplugin_proxy.h',
1865
1866 'tools/build/win/precompiled.cc',
1867 'tools/build/win/precompiled.h',
1856 ], 1868 ],
1869 'configurations': {
1870 'Debug': {
1871 'msvs_precompiled_header': 'tools/build/win/precompiled.h',
1872 'msvs_precompiled_source': 'tools/build/win/precompiled.cc',
1873 },
1874 },
1857 # These are layered in conditionals in the event other platforms 1875 # These are layered in conditionals in the event other platforms
1858 # end up using this module as well. 1876 # end up using this module as well.
1859 'conditions': [ 1877 'conditions': [
1860 ['OS=="win"', { 1878 ['OS=="win"', {
1861 'defines': [ 1879 'defines': [
1862 '__STD_C', 1880 '__STD_C',
1863 '_CRT_SECURE_NO_DEPRECATE', 1881 '_CRT_SECURE_NO_DEPRECATE',
1864 '_SCL_SECURE_NO_DEPRECATE', 1882 '_SCL_SECURE_NO_DEPRECATE',
1865 ], 1883 ],
1866 'include_dirs': [ 1884 'include_dirs': [
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
1966 'renderer/user_script_slave.cc', 1984 'renderer/user_script_slave.cc',
1967 'renderer/user_script_slave.h', 1985 'renderer/user_script_slave.h',
1968 'renderer/visitedlink_slave.cc', 1986 'renderer/visitedlink_slave.cc',
1969 'renderer/visitedlink_slave.h', 1987 'renderer/visitedlink_slave.h',
1970 'renderer/webmediaplayer_impl.cc', 1988 'renderer/webmediaplayer_impl.cc',
1971 'renderer/webmediaplayer_impl.h', 1989 'renderer/webmediaplayer_impl.h',
1972 'renderer/webplugin_delegate_proxy.cc', 1990 'renderer/webplugin_delegate_proxy.cc',
1973 'renderer/webplugin_delegate_proxy.h', 1991 'renderer/webplugin_delegate_proxy.h',
1974 'renderer/webworker_proxy.cc', 1992 'renderer/webworker_proxy.cc',
1975 'renderer/webworker_proxy.h', 1993 'renderer/webworker_proxy.h',
1994
1995 'tools/build/win/precompiled_wtl.cc',
1996 'tools/build/win/precompiled_wtl.h',
1976 ], 1997 ],
1977 'link_settings': { 1998 'link_settings': {
1978 'mac_bundle_resources': [ 1999 'mac_bundle_resources': [
1979 'renderer/renderer.sb', 2000 'renderer/renderer.sb',
1980 ], 2001 ],
1981 }, 2002 },
2003 'configurations': {
2004 'Debug': {
2005 'msvs_precompiled_header': 'tools/build/win/precompiled_wtl.h',
2006 'msvs_precompiled_source': 'tools/build/win/precompiled_wtl.cc',
2007 },
2008 },
1982 'conditions': [ 2009 'conditions': [
1983 # Linux-specific rules. 2010 # Linux-specific rules.
1984 ['OS=="linux"', { 2011 ['OS=="linux"', {
1985 'dependencies': [ 2012 'dependencies': [
1986 '../build/linux/system.gyp:gtk', 2013 '../build/linux/system.gyp:gtk',
1987 ], 2014 ],
1988 }], 2015 }],
1989 # Windows-specific rules. 2016 # Windows-specific rules.
1990 ['OS=="win"', { 2017 ['OS=="win"', {
1991 'include_dirs': [ 2018 'include_dirs': [
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after
2874 'dependencies': [ 2901 'dependencies': [
2875 'app', 2902 'app',
2876 'browser', 2903 'browser',
2877 'common', 2904 'common',
2878 'renderer', 2905 'renderer',
2879 'utility', 2906 'utility',
2880 'chrome_resources', 2907 'chrome_resources',
2881 'chrome_strings', 2908 'chrome_strings',
2882 'test_support_unit', 2909 'test_support_unit',
2883 '../app/app.gyp:app_resources', 2910 '../app/app.gyp:app_resources',
2911 '../net/net.gyp:net_resources',
2884 '../net/net.gyp:net_test_support', 2912 '../net/net.gyp:net_test_support',
2885 '../printing/printing.gyp:printing', 2913 '../printing/printing.gyp:printing',
2886 '../webkit/webkit.gyp:webkit', 2914 '../webkit/webkit.gyp:webkit',
2915 '../webkit/webkit.gyp:webkit_resources',
2887 '../skia/skia.gyp:skia', 2916 '../skia/skia.gyp:skia',
2888 '../testing/gtest.gyp:gtest', 2917 '../testing/gtest.gyp:gtest',
2889 '../third_party/icu38/icu38.gyp:icui18n', 2918 '../third_party/icu38/icu38.gyp:icui18n',
2890 '../third_party/icu38/icu38.gyp:icuuc', 2919 '../third_party/icu38/icu38.gyp:icuuc',
2891 '../third_party/libxml/libxml.gyp:libxml', 2920 '../third_party/libxml/libxml.gyp:libxml',
2892 '../third_party/npapi/npapi.gyp:npapi', 2921 '../third_party/npapi/npapi.gyp:npapi',
2893 ], 2922 ],
2894 'include_dirs': [ 2923 'include_dirs': [
2895 '..', 2924 '..',
2896 ], 2925 ],
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
2996 'browser/importer/firefox_importer_unittest.cc', 3025 'browser/importer/firefox_importer_unittest.cc',
2997 'browser/importer/importer_unittest.cc', 3026 'browser/importer/importer_unittest.cc',
2998 'browser/importer/toolbar_importer_unittest.cc', 3027 'browser/importer/toolbar_importer_unittest.cc',
2999 'browser/login_prompt_unittest.cc', 3028 'browser/login_prompt_unittest.cc',
3000 'browser/metrics/metrics_log_unittest.cc', 3029 'browser/metrics/metrics_log_unittest.cc',
3001 'browser/metrics/metrics_response_unittest.cc', 3030 'browser/metrics/metrics_response_unittest.cc',
3002 'browser/net/chrome_url_request_context_unittest.cc', 3031 'browser/net/chrome_url_request_context_unittest.cc',
3003 'browser/net/dns_host_info_unittest.cc', 3032 'browser/net/dns_host_info_unittest.cc',
3004 'browser/net/dns_master_unittest.cc', 3033 'browser/net/dns_master_unittest.cc',
3005 'browser/net/resolve_proxy_msg_helper_unittest.cc', 3034 'browser/net/resolve_proxy_msg_helper_unittest.cc',
3035 'browser/net/test_url_fetcher_factory.cc',
3036 'browser/net/test_url_fetcher_factory.h',
3006 'browser/net/url_fetcher_unittest.cc', 3037 'browser/net/url_fetcher_unittest.cc',
3007 'browser/net/url_fixer_upper_unittest.cc', 3038 'browser/net/url_fixer_upper_unittest.cc',
3008 'browser/password_manager/encryptor_unittest.cc', 3039 'browser/password_manager/encryptor_unittest.cc',
3009 'browser/password_manager/password_form_manager_unittest.cc', 3040 'browser/password_manager/password_form_manager_unittest.cc',
3010 'browser/printing/page_number_unittest.cc', 3041 'browser/printing/page_number_unittest.cc',
3011 'browser/printing/page_overlays_unittest.cc', 3042 'browser/printing/page_overlays_unittest.cc',
3012 'browser/printing/page_range_unittest.cc', 3043 'browser/printing/page_range_unittest.cc',
3013 'browser/printing/page_setup_unittest.cc', 3044 'browser/printing/page_setup_unittest.cc',
3014 'browser/printing/print_job_unittest.cc', 3045 'browser/printing/print_job_unittest.cc',
3015 'browser/printing/win_printing_context_unittest.cc', 3046 'browser/printing/win_printing_context_unittest.cc',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
3092 'test/render_view_test.h', 3123 'test/render_view_test.h',
3093 'test/test_notification_tracker.cc', 3124 'test/test_notification_tracker.cc',
3094 'test/test_notification_tracker.h', 3125 'test/test_notification_tracker.h',
3095 'test/v8_unit_test.cc', 3126 'test/v8_unit_test.cc',
3096 'test/v8_unit_test.h', 3127 'test/v8_unit_test.h',
3097 '../views/controls/label_unittest.cc', 3128 '../views/controls/label_unittest.cc',
3098 '../views/controls/table/table_view_unittest.cc', 3129 '../views/controls/table/table_view_unittest.cc',
3099 '../views/focus/focus_manager_unittest.cc', 3130 '../views/focus/focus_manager_unittest.cc',
3100 '../views/grid_layout_unittest.cc', 3131 '../views/grid_layout_unittest.cc',
3101 '../views/view_unittest.cc', 3132 '../views/view_unittest.cc',
3133
3134 'tools/build/win/precompiled_wtl.h',
3135 'tools/build/win/precompiled_wtl.cc',
3102 ], 3136 ],
3103 'conditions': [ 3137 'conditions': [
3104 ['OS=="linux"', { 3138 ['OS=="linux"', {
3105 'dependencies': [ 3139 'dependencies': [
3106 '../build/linux/system.gyp:gtk', 3140 '../build/linux/system.gyp:gtk',
3107 '../build/linux/system.gyp:nss', 3141 '../build/linux/system.gyp:nss',
3108 ], 3142 ],
3109 'sources!': [ 3143 'sources!': [
3110 # This test is mostly about renaming downloads to safe file 3144 # This test is mostly about renaming downloads to safe file
3111 # names. As such we don't need/want to port it to linux. We 3145 # names. As such we don't need/want to port it to linux. We
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
3156 'sources!': [ 3190 'sources!': [
3157 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc', 3191 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc',
3158 'common/file_descriptor_set_unittest.cc', 3192 'common/file_descriptor_set_unittest.cc',
3159 'common/net/url_util_unittest.cc', 3193 'common/net/url_util_unittest.cc',
3160 ], 3194 ],
3161 'dependencies': [ 3195 'dependencies': [
3162 '../views/views.gyp:views', 3196 '../views/views.gyp:views',
3163 ], 3197 ],
3164 'configurations': { 3198 'configurations': {
3165 'Debug': { 3199 'Debug': {
3200 'msvs_precompiled_header': 'tools/build/win/precompiled_wtl.h',
3201 'msvs_precompiled_source': 'tools/build/win/precompiled_wtl.cc',
3166 'msvs_settings': { 3202 'msvs_settings': {
3167 'VCLinkerTool': { 3203 'VCLinkerTool': {
3168 'LinkIncremental': '1', # /INCREMENTAL:NO 3204 'LinkIncremental': '1', # /INCREMENTAL:NO
3169 }, 3205 },
3170 }, 3206 },
3171 }, 3207 },
3172 }, 3208 },
3173 }, { # else: OS != "win" 3209 }, { # else: OS != "win"
3174 'sources!': [ 3210 'sources!': [
3175 'browser/autocomplete/search_provider_unittest.cc', 3211 'browser/autocomplete/search_provider_unittest.cc',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
3246 }], 3282 }],
3247 ], 3283 ],
3248 }, 3284 },
3249 { 3285 {
3250 'target_name': 'page_cycler_tests', 3286 'target_name': 'page_cycler_tests',
3251 'type': 'executable', 3287 'type': 'executable',
3252 'dependencies': [ 3288 'dependencies': [
3253 'app', 3289 'app',
3254 'chrome_resources', 3290 'chrome_resources',
3255 'chrome_strings', 3291 'chrome_strings',
3292 'test_support_common',
3256 'test_support_ui', 3293 'test_support_ui',
3257 '../base/base.gyp:base', 3294 '../base/base.gyp:base',
3258 '../skia/skia.gyp:skia', 3295 '../skia/skia.gyp:skia',
3259 '../testing/gtest.gyp:gtest', 3296 '../testing/gtest.gyp:gtest',
3260 ], 3297 ],
3261 'sources': [ 3298 'sources': [
3262 'test/page_cycler/page_cycler_test.cc', 3299 'test/page_cycler/page_cycler_test.cc',
3263 'tools/build/win/precompiled.cc', 3300 'tools/build/win/precompiled.cc',
3264 'tools/build/win/precompiled.h', 3301 'tools/build/win/precompiled.h',
3265 ], 3302 ],
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
3448 }], # OS!="mac" 3485 }], # OS!="mac"
3449 ['OS=="win"', 3486 ['OS=="win"',
3450 { 'targets': [ 3487 { 'targets': [
3451 { 3488 {
3452 # TODO(sgk): remove this when we change the buildbots to 3489 # TODO(sgk): remove this when we change the buildbots to
3453 # use the generated build\all.sln file to build the world. 3490 # use the generated build\all.sln file to build the world.
3454 'target_name': 'pull_in_all', 3491 'target_name': 'pull_in_all',
3455 'type': 'none', 3492 'type': 'none',
3456 'dependencies': [ 3493 'dependencies': [
3457 'app/locales.gyp:*', 3494 'app/locales.gyp:*',
3495 'installer/installer.gyp:*',
3458 '../app/app.gyp:*', 3496 '../app/app.gyp:*',
3459 '../base/base.gyp:*', 3497 '../base/base.gyp:*',
3460 '../media/media.gyp:*', 3498 '../media/media.gyp:*',
3461 '../net/net.gyp:*', 3499 '../net/net.gyp:*',
3462 '../printing/printing.gyp:*', 3500 '../printing/printing.gyp:*',
3463 '../sdch/sdch.gyp:*', 3501 '../sdch/sdch.gyp:*',
3464 '../skia/skia.gyp:*', 3502 '../skia/skia.gyp:*',
3465 '../testing/gtest.gyp:*', 3503 '../testing/gtest.gyp:*',
3466 '../third_party/bsdiff/bsdiff.gyp:*', 3504 '../third_party/bsdiff/bsdiff.gyp:*',
3467 '../third_party/bspatch/bspatch.gyp:*', 3505 '../third_party/bspatch/bspatch.gyp:*',
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
3806 }, 3844 },
3807 { 3845 {
3808 'target_name': 'interactive_ui_tests', 3846 'target_name': 'interactive_ui_tests',
3809 'type': 'executable', 3847 'type': 'executable',
3810 'dependencies': [ 3848 'dependencies': [
3811 'chrome_resources', 3849 'chrome_resources',
3812 'chrome_strings', 3850 'chrome_strings',
3813 'test_support_common', 3851 'test_support_common',
3814 'test_support_ui', 3852 'test_support_ui',
3815 'third_party/hunspell/hunspell.gyp:hunspell', 3853 'third_party/hunspell/hunspell.gyp:hunspell',
3854 '../net/net.gyp:net_resources',
3816 '../skia/skia.gyp:skia', 3855 '../skia/skia.gyp:skia',
3817 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 3856 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
3818 '../third_party/icu38/icu38.gyp:icui18n', 3857 '../third_party/icu38/icu38.gyp:icui18n',
3819 '../third_party/libpng/libpng.gyp:libpng', 3858 '../third_party/libpng/libpng.gyp:libpng',
3820 '../third_party/libxml/libxml.gyp:libxml', 3859 '../third_party/libxml/libxml.gyp:libxml',
3821 '../third_party/zlib/zlib.gyp:zlib', 3860 '../third_party/zlib/zlib.gyp:zlib',
3822 '../testing/gtest.gyp:gtest', 3861 '../testing/gtest.gyp:gtest',
3823 '../third_party/npapi/npapi.gyp:npapi', 3862 '../third_party/npapi/npapi.gyp:npapi',
3824 '../views/views.gyp:views', 3863 '../views/views.gyp:views',
3864 '../webkit/webkit.gyp:webkit_resources',
3825 ], 3865 ],
3826 'include_dirs': [ 3866 'include_dirs': [
3827 '..', 3867 '..',
3828 'third_party/wtl/include', 3868 'third_party/wtl/include',
3829 ], 3869 ],
3830 'sources': [ 3870 'sources': [
3831 'browser/browser_focus_uitest.cc', 3871 'browser/browser_focus_uitest.cc',
3832 'browser/views/bookmark_bar_view_test.cc', 3872 'browser/views/bookmark_bar_view_test.cc',
3833 'browser/views/constrained_window_impl_interactive_uitest.cc', 3873 'browser/views/constrained_window_impl_interactive_uitest.cc',
3834 'browser/views/find_bar_win_interactive_uitest.cc', 3874 'browser/views/find_bar_win_interactive_uitest.cc',
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
4027 }, 4067 },
4028 }, 4068 },
4029 }, 4069 },
4030 { 4070 {
4031 'target_name': 'url_fetch_test', 4071 'target_name': 'url_fetch_test',
4032 'type': 'executable', 4072 'type': 'executable',
4033 'dependencies': [ 4073 'dependencies': [
4034 'test_support_common', 4074 'test_support_common',
4035 'test_support_ui', 4075 'test_support_ui',
4036 'theme_resources', 4076 'theme_resources',
4077 '../net/net.gyp:net',
4037 '../skia/skia.gyp:skia', 4078 '../skia/skia.gyp:skia',
4038 '../testing/gtest.gyp:gtest', 4079 '../testing/gtest.gyp:gtest',
4039 ], 4080 ],
4040 'include_dirs': [ 4081 'include_dirs': [
4041 '..', 4082 '..',
4083 'third_party/wtl/include',
4042 ], 4084 ],
4043 'sources': [ 4085 'sources': [
4044 'test/url_fetch_test/url_fetch_test.cc', 4086 'test/url_fetch_test/url_fetch_test.cc',
4087
4088 'tools/build/win/precompiled_wtl.cc',
4089 'tools/build/win/precompiled_wtl.h',
4045 ], 4090 ],
4091 'configurations': {
4092 'Debug': {
4093 'msvs_precompiled_header': 'tools/build/win/precompiled_wtl.h',
4094 'msvs_precompiled_source': 'tools/build/win/precompiled_wtl.cc',
4095 },
4096 },
4046 }, 4097 },
4047 { 4098 {
4048 'target_name': 'worker', 4099 'target_name': 'worker',
4049 'type': '<(library)', 4100 'type': '<(library)',
4050 'dependencies': [ 4101 'dependencies': [
4051 '../base/base.gyp:base', 4102 '../base/base.gyp:base',
4052 '../webkit/webkit.gyp:webkit', 4103 '../webkit/webkit.gyp:webkit',
4053 ], 4104 ],
4054 'sources': [ 4105 'sources': [
4055 'tools/build/win/precompiled.cc', 4106 'tools/build/win/precompiled.cc',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
4106 # Use outputs of this action as inputs for the main target build. 4157 # Use outputs of this action as inputs for the main target build.
4107 # Seems as a misnomer but makes this happy on Linux (scons). 4158 # Seems as a misnomer but makes this happy on Linux (scons).
4108 'process_outputs_as_sources': 1, 4159 'process_outputs_as_sources': 1,
4109 }, 4160 },
4110 ], # 'actions' 4161 ], # 'actions'
4111 }, 4162 },
4112 ] 4163 ]
4113 }], 4164 }],
4114 ], # 'conditions' 4165 ], # 'conditions'
4115 } 4166 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698