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

Side by Side Diff: components/components_tests.gyp

Issue 1242323004: Add missing dependencies. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Remove unnecessary dependency Created 5 years, 5 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 ], 763 ],
764 'include_dirs': [ 764 'include_dirs': [
765 '..', 765 '..',
766 ], 766 ],
767 'dependencies': [ 767 'dependencies': [
768 '../base/base.gyp:base', 768 '../base/base.gyp:base',
769 '../base/base.gyp:base_prefs_test_support', 769 '../base/base.gyp:base_prefs_test_support',
770 '../base/base.gyp:test_support_base', 770 '../base/base.gyp:test_support_base',
771 # TODO(blundell): Eliminate the need for this dependency in code 771 # TODO(blundell): Eliminate the need for this dependency in code
772 # that iOS shares. crbug.com/325243 772 # that iOS shares. crbug.com/325243
773 '../content/content_shell_and_tests.gyp:test_support_content', 773 '../content/content_shell_and_tests.gyp:test_support_content',
danakj 2015/07/22 20:09:46 This leads me to similar questions about the rest
774 '../google_apis/google_apis.gyp:google_apis_test_support', 774 '../google_apis/google_apis.gyp:google_apis_test_support',
775 '../jingle/jingle.gyp:notifier_test_util', 775 '../jingle/jingle.gyp:notifier_test_util',
776 '../net/net.gyp:net_test_support', 776 '../net/net.gyp:net_test_support',
777 '../sql/sql.gyp:test_support_sql', 777 '../sql/sql.gyp:test_support_sql',
778 '../sync/sync.gyp:sync', 778 '../sync/sync.gyp:sync',
779 '../sync/sync.gyp:test_support_sync_api', 779 '../sync/sync.gyp:test_support_sync_api',
780 '../testing/gmock.gyp:gmock', 780 '../testing/gmock.gyp:gmock',
781 '../testing/gtest.gyp:gtest', 781 '../testing/gtest.gyp:gtest',
782 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 782 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
783 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_util ', 783 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_util ',
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 'components.gyp:url_fixer', 874 'components.gyp:url_fixer',
875 'components.gyp:variations', 875 'components.gyp:variations',
876 'components.gyp:variations_http_provider', 876 'components.gyp:variations_http_provider',
877 'components.gyp:wallpaper', 877 'components.gyp:wallpaper',
878 'components.gyp:web_resource', 878 'components.gyp:web_resource',
879 'components.gyp:web_resource_test_support', 879 'components.gyp:web_resource_test_support',
880 'components_resources.gyp:components_resources', 880 'components_resources.gyp:components_resources',
881 'components_strings.gyp:components_strings', 881 'components_strings.gyp:components_strings',
882 'components_tests_pak', 882 'components_tests_pak',
883 'mime_util/mime_util.gyp:mime_util', 883 'mime_util/mime_util.gyp:mime_util',
884 # Only needed at runtime.
885 '../third_party/mesa/mesa.gyp:osmesa',
884 ], 886 ],
885 'conditions': [ 887 'conditions': [
886 ['enable_rlz_support==1', { 888 ['enable_rlz_support==1', {
887 'sources': [ 889 'sources': [
888 '<@(rlz_unittest_sources)', 890 '<@(rlz_unittest_sources)',
889 ], 891 ],
890 'dependencies': [ 892 'dependencies': [
891 '../net/net.gyp:net_test_support', 893 '../net/net.gyp:net_test_support',
892 '../rlz/rlz.gyp:test_support_rlz', 894 '../rlz/rlz.gyp:test_support_rlz',
893 'components.gyp:rlz', 895 'components.gyp:rlz',
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
1545 ], 1547 ],
1546 'variables': { 1548 'variables': {
1547 'test_suite_name': 'components_unittests', 1549 'test_suite_name': 'components_unittests',
1548 }, 1550 },
1549 'includes': [ '../build/apk_test.gypi' ], 1551 'includes': [ '../build/apk_test.gypi' ],
1550 }, 1552 },
1551 ], 1553 ],
1552 }], 1554 }],
1553 ], 1555 ],
1554 } 1556 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698