OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 'sources': [ | 388 'sources': [ |
389 'common/media_galleries/picasa_test_util.cc', | 389 'common/media_galleries/picasa_test_util.cc', |
390 'common/media_galleries/picasa_test_util.cc', | 390 'common/media_galleries/picasa_test_util.cc', |
391 'common/media_galleries/pmp_test_util.cc', | 391 'common/media_galleries/pmp_test_util.cc', |
392 'common/media_galleries/pmp_test_util.h', | 392 'common/media_galleries/pmp_test_util.h', |
393 ], | 393 ], |
394 }], | 394 }], |
395 ['OS=="mac"', { | 395 ['OS=="mac"', { |
396 'dependencies': [ | 396 'dependencies': [ |
397 '../breakpad/breakpad.gyp:breakpad', | 397 '../breakpad/breakpad.gyp:breakpad', |
398 '../components/components.gyp:breakpad_component', | 398 '../components/components.gyp:crash_component', |
399 ], | 399 ], |
400 'sources': [ | 400 'sources': [ |
401 'app/chrome_breakpad_client.cc', | 401 'app/chrome_breakpad_client.cc', |
402 'app/chrome_breakpad_client_mac.mm', | 402 'app/chrome_breakpad_client_mac.mm', |
403 'app/chrome_main_mac.mm', | 403 'app/chrome_main_mac.mm', |
404 ], | 404 ], |
405 }], | 405 }], |
406 ['enable_mdns==1', { | 406 ['enable_mdns==1', { |
407 'sources': [ | 407 'sources': [ |
408 'browser/local_discovery/test_service_discovery_client.cc', | 408 'browser/local_discovery/test_service_discovery_client.cc', |
(...skipping 2404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2813 ['OS=="mac"', { | 2813 ['OS=="mac"', { |
2814 # TODO(mark): We really want this for all non-static library targets, | 2814 # TODO(mark): We really want this for all non-static library targets, |
2815 # but when we tried to pull it up to the common.gypi level, it broke | 2815 # but when we tried to pull it up to the common.gypi level, it broke |
2816 # other things like the ui and startup tests. *shrug* | 2816 # other things like the ui and startup tests. *shrug* |
2817 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 2817 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
2818 }], | 2818 }], |
2819 ['OS=="win"', { | 2819 ['OS=="win"', { |
2820 'dependencies': [ | 2820 'dependencies': [ |
2821 # breakpad is currently only tested on Windows. | 2821 # breakpad is currently only tested on Windows. |
2822 '../breakpad/breakpad.gyp:*', | 2822 '../breakpad/breakpad.gyp:*', |
2823 '../components/components.gyp:breakpad_component', | 2823 '../components/components.gyp:crash_component', |
2824 ], | 2824 ], |
2825 'conditions': [ | 2825 'conditions': [ |
2826 ['win_use_allocator_shim==1', { | 2826 ['win_use_allocator_shim==1', { |
2827 'dependencies': [ | 2827 'dependencies': [ |
2828 '<(allocator_target)', | 2828 '<(allocator_target)', |
2829 ], | 2829 ], |
2830 }], | 2830 }], |
2831 ], | 2831 ], |
2832 'msvs_settings': { | 2832 'msvs_settings': { |
2833 'VCLinkerTool': { | 2833 'VCLinkerTool': { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2889 'dependencies': [ | 2889 'dependencies': [ |
2890 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2890 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
2891 ], | 2891 ], |
2892 }], | 2892 }], |
2893 ], | 2893 ], |
2894 }, | 2894 }, |
2895 ], | 2895 ], |
2896 }], | 2896 }], |
2897 ], # 'conditions' | 2897 ], # 'conditions' |
2898 } | 2898 } |
OLD | NEW |