OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
983 ], | 983 ], |
984 }], | 984 }], |
985 ['OS!="ios"', { | 985 ['OS!="ios"', { |
986 'targets': [ | 986 'targets': [ |
987 { | 987 { |
988 'target_name': 'components_browsertests', | 988 'target_name': 'components_browsertests', |
989 'type': '<(gtest_target_type)', | 989 'type': '<(gtest_target_type)', |
990 'defines!': ['CONTENT_IMPLEMENTATION'], | 990 'defines!': ['CONTENT_IMPLEMENTATION'], |
991 'dependencies': [ | 991 'dependencies': [ |
992 'components.gyp:autofill_content_browser', | 992 'components.gyp:autofill_content_browser', |
| 993 'components.gyp:autofill_content_renderer', |
993 'components.gyp:password_manager_content_renderer', | 994 'components.gyp:password_manager_content_renderer', |
994 'components.gyp:pref_registry_test_support', | 995 'components.gyp:pref_registry_test_support', |
995 'components_resources.gyp:components_resources', | 996 'components_resources.gyp:components_resources', |
996 '../content/content.gyp:content_common', | 997 '../content/content.gyp:content_common', |
997 '../content/content.gyp:content_gpu', | 998 '../content/content.gyp:content_gpu', |
998 '../content/content.gyp:content_plugin', | 999 '../content/content.gyp:content_plugin', |
999 '../content/content.gyp:content_renderer', | 1000 '../content/content.gyp:content_renderer', |
1000 '../content/content_shell_and_tests.gyp:content_browser_test_support
', | 1001 '../content/content_shell_and_tests.gyp:content_browser_test_support
', |
1001 '../content/content_shell_and_tests.gyp:content_shell_lib', | 1002 '../content/content_shell_and_tests.gyp:content_shell_lib', |
1002 '../content/content_shell_and_tests.gyp:content_shell_pak', | 1003 '../content/content_shell_and_tests.gyp:content_shell_pak', |
1003 '../content/content_shell_and_tests.gyp:test_support_content', | 1004 '../content/content_shell_and_tests.gyp:test_support_content', |
1004 '../skia/skia.gyp:skia', | 1005 '../skia/skia.gyp:skia', |
1005 '../testing/gmock.gyp:gmock', | 1006 '../testing/gmock.gyp:gmock', |
1006 '../testing/gtest.gyp:gtest', | 1007 '../testing/gtest.gyp:gtest', |
1007 | 1008 |
1008 # Dependencies of dom_distiller | 1009 # Dependencies of dom_distiller |
1009 'components.gyp:dom_distiller_content', | 1010 'components.gyp:dom_distiller_content', |
1010 'components.gyp:dom_distiller_core', | 1011 'components.gyp:dom_distiller_core', |
1011 'components_strings.gyp:components_strings', | 1012 'components_strings.gyp:components_strings', |
1012 ], | 1013 ], |
1013 'include_dirs': [ | 1014 'include_dirs': [ |
1014 '..', | 1015 '..', |
1015 ], | 1016 ], |
1016 'defines': [ | 1017 'defines': [ |
1017 'HAS_OUT_OF_PROC_TEST_RUNNER', | 1018 'HAS_OUT_OF_PROC_TEST_RUNNER', |
1018 ], | 1019 ], |
1019 'sources': [ | 1020 'sources': [ |
1020 'autofill/content/browser/risk/fingerprint_browsertest.cc', | 1021 'autofill/content/browser/risk/fingerprint_browsertest.cc', |
| 1022 'autofill/content/renderer/password_form_conversion_utils_browsertes
t.cc', |
1021 'dom_distiller/content/distiller_page_web_contents_browsertest.cc', | 1023 'dom_distiller/content/distiller_page_web_contents_browsertest.cc', |
1022 'password_manager/content/renderer/credential_manager_client_browser
test.cc', | 1024 'password_manager/content/renderer/credential_manager_client_browser
test.cc', |
1023 ], | 1025 ], |
1024 'actions': [ | 1026 'actions': [ |
1025 { | 1027 { |
1026 'action_name': 'repack_components_pack', | 1028 'action_name': 'repack_components_pack', |
1027 'variables': { | 1029 'variables': { |
1028 'pak_inputs': [ | 1030 'pak_inputs': [ |
1029 '<(SHARED_INTERMEDIATE_DIR)/components/components_resources.pa
k', | 1031 '<(SHARED_INTERMEDIATE_DIR)/components/components_resources.pa
k', |
1030 '<(SHARED_INTERMEDIATE_DIR)/components/strings/components_stri
ngs_en-US.pak', | 1032 '<(SHARED_INTERMEDIATE_DIR)/components/strings/components_stri
ngs_en-US.pak', |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1087 'dependencies': [ | 1089 'dependencies': [ |
1088 '../base/allocator/allocator.gyp:allocator', | 1090 '../base/allocator/allocator.gyp:allocator', |
1089 ], | 1091 ], |
1090 }], | 1092 }], |
1091 ], | 1093 ], |
1092 }, | 1094 }, |
1093 ], | 1095 ], |
1094 }], | 1096 }], |
1095 ], | 1097 ], |
1096 } | 1098 } |
OLD | NEW |