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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 501303002: [Mac] Make app shims load the same framework version as the running Chrome process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a comment. Created 6 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
OLDNEW
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 1854 matching lines...) Expand 10 before | Expand all | Expand 10 after
1865 'common/extensions/permissions/socket_permission_unittest.cc', 1865 'common/extensions/permissions/socket_permission_unittest.cc',
1866 'common/extensions/permissions/usb_device_permission_unittest.cc', 1866 'common/extensions/permissions/usb_device_permission_unittest.cc',
1867 'common/extensions/sync_type_unittest.cc', 1867 'common/extensions/sync_type_unittest.cc',
1868 'common/extensions/update_manifest_unittest.cc', 1868 'common/extensions/update_manifest_unittest.cc',
1869 'common/extensions/value_counter_unittest.cc', 1869 'common/extensions/value_counter_unittest.cc',
1870 'common/extensions/api/extension_api_unittest.cc', 1870 'common/extensions/api/extension_api_unittest.cc',
1871 'common/favicon/favicon_url_parser_unittest.cc', 1871 'common/favicon/favicon_url_parser_unittest.cc',
1872 'common/importer/firefox_importer_utils_unittest.cc', 1872 'common/importer/firefox_importer_utils_unittest.cc',
1873 'common/ini_parser_unittest.cc', 1873 'common/ini_parser_unittest.cc',
1874 'common/instant_restricted_id_cache_unittest.cc', 1874 'common/instant_restricted_id_cache_unittest.cc',
1875 'common/mac/app_mode_chrome_locator_unittest.mm',
1875 'common/mac/cfbundle_blocker_unittest.mm', 1876 'common/mac/cfbundle_blocker_unittest.mm',
1876 'common/mac/mock_launchd.cc', 1877 'common/mac/mock_launchd.cc',
1877 'common/mac/mock_launchd.h', 1878 'common/mac/mock_launchd.h',
1878 'common/mac/objc_zombie_unittest.mm', 1879 'common/mac/objc_zombie_unittest.mm',
1879 'common/multi_process_lock_unittest.cc', 1880 'common/multi_process_lock_unittest.cc',
1880 'common/net/x509_certificate_model_unittest.cc', 1881 'common/net/x509_certificate_model_unittest.cc',
1881 'common/partial_circular_buffer_unittest.cc', 1882 'common/partial_circular_buffer_unittest.cc',
1882 'common/pepper_permission_util_unittest.cc', 1883 'common/pepper_permission_util_unittest.cc',
1883 'common/pref_names_util_unittest.cc', 1884 'common/pref_names_util_unittest.cc',
1884 'common/search_urls_unittest.cc', 1885 'common/search_urls_unittest.cc',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1985 '../tools/json_schema_compiler/test/functions_on_types_unittest.cc', 1986 '../tools/json_schema_compiler/test/functions_on_types_unittest.cc',
1986 '../tools/json_schema_compiler/test/idl_schemas_unittest.cc', 1987 '../tools/json_schema_compiler/test/idl_schemas_unittest.cc',
1987 '../tools/json_schema_compiler/test/objects_unittest.cc', 1988 '../tools/json_schema_compiler/test/objects_unittest.cc',
1988 '../tools/json_schema_compiler/test/simple_api_unittest.cc', 1989 '../tools/json_schema_compiler/test/simple_api_unittest.cc',
1989 '../tools/json_schema_compiler/test/error_generation_unittest.cc', 1990 '../tools/json_schema_compiler/test/error_generation_unittest.cc',
1990 '../ui/webui/resources/js/cr.js', 1991 '../ui/webui/resources/js/cr.js',
1991 ], 1992 ],
1992 'conditions': [ 1993 'conditions': [
1993 ['OS!="ios"', { 1994 ['OS!="ios"', {
1994 'dependencies': [ 1995 'dependencies': [
1996 'app_mode_app_support',
tapted 2014/08/26 07:12:48 might need an os==mac guard?
jackhou1 2014/08/26 08:15:14 Done.
1995 'common/extensions/api/api.gyp:chrome_api', 1997 'common/extensions/api/api.gyp:chrome_api',
1996 '../components/components.gyp:autofill_content_test_support', 1998 '../components/components.gyp:autofill_content_test_support',
1997 '../components/components.gyp:component_metrics_proto', 1999 '../components/components.gyp:component_metrics_proto',
1998 '../components/components.gyp:data_reduction_proxy_test_support', 2000 '../components/components.gyp:data_reduction_proxy_test_support',
1999 '../components/components_strings.gyp:components_strings', 2001 '../components/components_strings.gyp:components_strings',
2000 '../content/app/resources/content_resources.gyp:content_resources', 2002 '../content/app/resources/content_resources.gyp:content_resources',
2001 '../extensions/extensions_resources.gyp:extensions_resources', 2003 '../extensions/extensions_resources.gyp:extensions_resources',
2002 '../extensions/extensions_strings.gyp:extensions_strings', 2004 '../extensions/extensions_strings.gyp:extensions_strings',
2003 '../gpu/gpu.gyp:gpu_unittest_utils', 2005 '../gpu/gpu.gyp:gpu_unittest_utils',
2004 '../media/media.gyp:media_test_support', 2006 '../media/media.gyp:media_test_support',
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after
2887 'dependencies': [ 2889 'dependencies': [
2888 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2890 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2889 ], 2891 ],
2890 }], 2892 }],
2891 ], 2893 ],
2892 }, 2894 },
2893 ], 2895 ],
2894 }], 2896 }],
2895 ], # 'conditions' 2897 ], # 'conditions'
2896 } 2898 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698