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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 10700180: [Sync] Add sync_export.h (Step 1 for componentizing sync) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert model_type_test_util changes Created 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 }, 933 },
934 }, 934 },
935 }, 935 },
936 }, 936 },
937 }], 937 }],
938 ], 938 ],
939 }, 939 },
940 { 940 {
941 'target_name': 'unit_tests', 941 'target_name': 'unit_tests',
942 'type': 'executable', 942 'type': 'executable',
943 'defines': [
944 'SYNC_TEST',
945 ],
943 'dependencies': [ 946 'dependencies': [
944 # unit tests should only depend on 947 # unit tests should only depend on
945 # 1) everything that the chrome binaries depend on: 948 # 1) everything that the chrome binaries depend on:
946 '<@(chromium_dependencies)', 949 '<@(chromium_dependencies)',
947 # 2) test-specific support libraries: 950 # 2) test-specific support libraries:
948 '../base/base.gyp:test_support_base', 951 '../base/base.gyp:test_support_base',
949 '../gpu/gpu.gyp:gpu_unittest_utils', 952 '../gpu/gpu.gyp:gpu_unittest_utils',
950 '../media/media.gyp:media_test_support', 953 '../media/media.gyp:media_test_support',
951 '../net/net.gyp:net', 954 '../net/net.gyp:net',
952 '../net/net.gyp:net_test_support', 955 '../net/net.gyp:net_test_support',
(...skipping 2891 matching lines...) Expand 10 before | Expand all | Expand 10 after
3844 'destination': '<(PRODUCT_DIR)/test/data/third_party/kraken/hosted/kra ken-1.1', 3847 'destination': '<(PRODUCT_DIR)/test/data/third_party/kraken/hosted/kra ken-1.1',
3845 'files': [ 3848 'files': [
3846 'test/perf/kraken_benchmark_uitest.js', 3849 'test/perf/kraken_benchmark_uitest.js',
3847 ], 3850 ],
3848 }, 3851 },
3849 ], 3852 ],
3850 }, 3853 },
3851 { 3854 {
3852 'target_name': 'sync_integration_tests', 3855 'target_name': 'sync_integration_tests',
3853 'type': 'executable', 3856 'type': 'executable',
3857 'defines': [
3858 'SYNC_TEST',
3859 ],
3854 'dependencies': [ 3860 'dependencies': [
3855 'browser', 3861 'browser',
3856 '../sync/protocol/sync_proto.gyp:sync_proto', 3862 '../sync/protocol/sync_proto.gyp:sync_proto',
3857 'chrome', 3863 'chrome',
3858 'chrome_resources.gyp:chrome_resources', 3864 'chrome_resources.gyp:chrome_resources',
3859 'chrome_resources.gyp:chrome_strings', 3865 'chrome_resources.gyp:chrome_strings',
3860 'common', 3866 'common',
3861 'renderer', 3867 'renderer',
3862 'test_support_common', 3868 'test_support_common',
3863 '../net/net.gyp:net', 3869 '../net/net.gyp:net',
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
4008 ['toolkit_views==1', { 4014 ['toolkit_views==1', {
4009 'dependencies': [ 4015 'dependencies': [
4010 '../ui/views/views.gyp:views', 4016 '../ui/views/views.gyp:views',
4011 ], 4017 ],
4012 }], 4018 }],
4013 ], 4019 ],
4014 }, 4020 },
4015 { 4021 {
4016 'target_name': 'sync_performance_tests', 4022 'target_name': 'sync_performance_tests',
4017 'type': 'executable', 4023 'type': 'executable',
4024 'defines': [
4025 'SYNC_TEST',
4026 ],
4018 'dependencies': [ 4027 'dependencies': [
4019 '../sync/protocol/sync_proto.gyp:sync_proto', 4028 '../sync/protocol/sync_proto.gyp:sync_proto',
4020 'browser', 4029 'browser',
4021 'chrome', 4030 'chrome',
4022 'test_support_common', 4031 'test_support_common',
4023 '../skia/skia.gyp:skia', 4032 '../skia/skia.gyp:skia',
4024 '../testing/gmock.gyp:gmock', 4033 '../testing/gmock.gyp:gmock',
4025 '../testing/gtest.gyp:gtest', 4034 '../testing/gtest.gyp:gtest',
4026 ], 4035 ],
4027 'include_dirs': [ 4036 'include_dirs': [
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after
4665 # Use outputs of this action as inputs for the main target build. 4674 # Use outputs of this action as inputs for the main target build.
4666 # Seems as a misnomer but makes this happy on Linux (scons). 4675 # Seems as a misnomer but makes this happy on Linux (scons).
4667 'process_outputs_as_sources': 1, 4676 'process_outputs_as_sources': 1,
4668 }, 4677 },
4669 ], # 'actions' 4678 ], # 'actions'
4670 }, 4679 },
4671 ] 4680 ]
4672 }], # 'coverage!=0' 4681 }], # 'coverage!=0'
4673 ], # 'conditions' 4682 ], # 'conditions'
4674 } 4683 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698