OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 5 'target_defaults': { |
6 'conditions': [ | 6 'conditions': [ |
7 ['strip_tests==1', { | 7 ['strip_tests==1', { |
8 'cflags!': [ '-g' ], | 8 'cflags!': [ '-g' ], |
9 'ldflags': [ '-Wl,--strip-debug' ], | 9 'ldflags': [ '-Wl,--strip-debug' ], |
10 }], | 10 }], |
(...skipping 2392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2403 'sources': [ | 2403 'sources': [ |
2404 'browser/printing/print_system_task_proxy_unittest.cc', | 2404 'browser/printing/print_system_task_proxy_unittest.cc', |
2405 ], | 2405 ], |
2406 }], | 2406 }], |
2407 ['component=="shared_library" and incremental_chrome_dll!=1', { | 2407 ['component=="shared_library" and incremental_chrome_dll!=1', { |
2408 # This is needed for tests that subclass | 2408 # This is needed for tests that subclass |
2409 # RendererWebKitPlatformSupportImpl, which subclasses stuff in | 2409 # RendererWebKitPlatformSupportImpl, which subclasses stuff in |
2410 # glue, which refers to symbols defined in these files. | 2410 # glue, which refers to symbols defined in these files. |
2411 # Hopefully this can be resolved with http://crbug.com/98755. | 2411 # Hopefully this can be resolved with http://crbug.com/98755. |
2412 'sources': [ | 2412 'sources': [ |
2413 '../content/renderer/renderer_glue.cc', | |
2414 '../content/common/socket_stream_dispatcher.cc', | 2413 '../content/common/socket_stream_dispatcher.cc', |
2415 ]}, | 2414 ]}, |
2416 ], | 2415 ], |
2417 ], | 2416 ], |
2418 }, | 2417 }, |
2419 { | 2418 { |
2420 # Executable that runs each browser test in a new process. | 2419 # Executable that runs each browser test in a new process. |
2421 'target_name': 'browser_tests', | 2420 'target_name': 'browser_tests', |
2422 'type': 'executable', | 2421 'type': 'executable', |
2423 'msvs_cygwin_shell': 0, | 2422 'msvs_cygwin_shell': 0, |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3029 # run time dependency | 3028 # run time dependency |
3030 '../webkit/webkit.gyp:copy_npapi_test_plugin', | 3029 '../webkit/webkit.gyp:copy_npapi_test_plugin', |
3031 ], | 3030 ], |
3032 }], | 3031 }], |
3033 ['component=="shared_library" and incremental_chrome_dll!=1', { | 3032 ['component=="shared_library" and incremental_chrome_dll!=1', { |
3034 # This is needed for tests that subclass | 3033 # This is needed for tests that subclass |
3035 # RendererWebKitPlatformSupportImpl, which subclasses stuff in | 3034 # RendererWebKitPlatformSupportImpl, which subclasses stuff in |
3036 # glue, which refers to symbols defined in these files. | 3035 # glue, which refers to symbols defined in these files. |
3037 # Hopefully this can be resolved with http://crbug.com/98755. | 3036 # Hopefully this can be resolved with http://crbug.com/98755. |
3038 'sources': [ | 3037 'sources': [ |
3039 '../content/renderer/renderer_glue.cc', | |
3040 '../content/common/socket_stream_dispatcher.cc', | 3038 '../content/common/socket_stream_dispatcher.cc', |
3041 ]}, | 3039 ]}, |
3042 ], | 3040 ], |
3043 ], # conditions | 3041 ], # conditions |
3044 }, # target browser_tests | 3042 }, # target browser_tests |
3045 { | 3043 { |
3046 # Executable that runs safebrowsing test in a new process. | 3044 # Executable that runs safebrowsing test in a new process. |
3047 'target_name': 'safe_browsing_tests', | 3045 'target_name': 'safe_browsing_tests', |
3048 'type': 'executable', | 3046 'type': 'executable', |
3049 'dependencies': [ | 3047 'dependencies': [ |
(...skipping 1291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4341 # Use outputs of this action as inputs for the main target build. | 4339 # Use outputs of this action as inputs for the main target build. |
4342 # Seems as a misnomer but makes this happy on Linux (scons). | 4340 # Seems as a misnomer but makes this happy on Linux (scons). |
4343 'process_outputs_as_sources': 1, | 4341 'process_outputs_as_sources': 1, |
4344 }, | 4342 }, |
4345 ], # 'actions' | 4343 ], # 'actions' |
4346 }, | 4344 }, |
4347 ] | 4345 ] |
4348 }], # 'coverage!=0' | 4346 }], # 'coverage!=0' |
4349 ], # 'conditions' | 4347 ], # 'conditions' |
4350 } | 4348 } |
OLD | NEW |