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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 9483002: Move values_test_util.{h,cc} to base/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 8 years, 9 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 'test/base/testing_profile_manager.h', 248 'test/base/testing_profile_manager.h',
249 'test/base/thread_observer_helper.h', 249 'test/base/thread_observer_helper.h',
250 'test/base/tracing.cc', 250 'test/base/tracing.cc',
251 'test/base/tracing.h', 251 'test/base/tracing.h',
252 'test/base/ui_test_utils.cc', 252 'test/base/ui_test_utils.cc',
253 'test/base/ui_test_utils.h', 253 'test/base/ui_test_utils.h',
254 'test/base/ui_test_utils_aura.cc', 254 'test/base/ui_test_utils_aura.cc',
255 'test/base/ui_test_utils_gtk.cc', 255 'test/base/ui_test_utils_gtk.cc',
256 'test/base/ui_test_utils_mac.mm', 256 'test/base/ui_test_utils_mac.mm',
257 'test/base/ui_test_utils_win.cc', 257 'test/base/ui_test_utils_win.cc',
258 'test/base/values_test_util.cc',
259 'test/base/values_test_util.h',
260 'test/perf/perf_test.cc', 258 'test/perf/perf_test.cc',
261 'test/perf/perf_test.h', 259 'test/perf/perf_test.h',
262 # TODO: these should live here but are currently used by 260 # TODO: these should live here but are currently used by
263 # production code code in libbrowser (in chrome.gyp). 261 # production code code in libbrowser (in chrome.gyp).
264 #'../content/browser/net/url_request_mock_http_job.cc', 262 #'../content/browser/net/url_request_mock_http_job.cc',
265 #'../content/browser/net/url_request_mock_http_job.h', 263 #'../content/browser/net/url_request_mock_http_job.h',
266 '../content/test/notification_observer_mock.cc', 264 '../content/test/notification_observer_mock.cc',
267 '../content/test/notification_observer_mock.h', 265 '../content/test/notification_observer_mock.h',
268 '../ui/gfx/image/image_unittest_util.h', 266 '../ui/gfx/image/image_unittest_util.h',
269 '../ui/gfx/image/image_unittest_util.cc', 267 '../ui/gfx/image/image_unittest_util.cc',
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 ], 1206 ],
1209 }, 1207 },
1210 { 1208 {
1211 'target_name': 'unit_tests', 1209 'target_name': 'unit_tests',
1212 'type': 'executable', 1210 'type': 'executable',
1213 'dependencies': [ 1211 'dependencies': [
1214 # unit tests should only depend on 1212 # unit tests should only depend on
1215 # 1) everything that the chrome binaries depend on: 1213 # 1) everything that the chrome binaries depend on:
1216 '<@(chromium_dependencies)', 1214 '<@(chromium_dependencies)',
1217 # 2) test-specific support libraries: 1215 # 2) test-specific support libraries:
1216 '../base/base.gyp:test_support_base',
1218 '../gpu/gpu.gyp:gpu_unittest_utils', 1217 '../gpu/gpu.gyp:gpu_unittest_utils',
1219 '../media/media.gyp:media_test_support', 1218 '../media/media.gyp:media_test_support',
1220 '../net/net.gyp:net', 1219 '../net/net.gyp:net',
1221 '../net/net.gyp:net_test_support', 1220 '../net/net.gyp:net_test_support',
1222 '../testing/gmock.gyp:gmock', 1221 '../testing/gmock.gyp:gmock',
1223 '../testing/gtest.gyp:gtest', 1222 '../testing/gtest.gyp:gtest',
1224 'test_support_common', 1223 'test_support_common',
1225 'test_support_sync', 1224 'test_support_sync',
1226 'test_support_syncapi', 1225 'test_support_syncapi',
1227 'test_support_syncapi_service', 1226 'test_support_syncapi_service',
(...skipping 2433 matching lines...) Expand 10 before | Expand all | Expand 10 after
3661 ], 3660 ],
3662 'defines' : [ 3661 'defines' : [
3663 'SYNC_ENGINE_VERSION_STRING="Unknown"', 3662 'SYNC_ENGINE_VERSION_STRING="Unknown"',
3664 '_CRT_SECURE_NO_WARNINGS', 3663 '_CRT_SECURE_NO_WARNINGS',
3665 '_USE_32BIT_TIME_T', 3664 '_USE_32BIT_TIME_T',
3666 ], 3665 ],
3667 'dependencies': [ 3666 'dependencies': [
3668 'browser/sync/protocol/sync_proto.gyp:sync_proto', 3667 'browser/sync/protocol/sync_proto.gyp:sync_proto',
3669 'common', 3668 'common',
3670 'debugger', 3669 'debugger',
3670 '../base/base.gyp:test_support_base',
3671 '../jingle/jingle.gyp:notifier_test_util', 3671 '../jingle/jingle.gyp:notifier_test_util',
3672 '../net/net.gyp:net', 3672 '../net/net.gyp:net',
3673 '../skia/skia.gyp:skia', 3673 '../skia/skia.gyp:skia',
3674 '../testing/gmock.gyp:gmock', 3674 '../testing/gmock.gyp:gmock',
3675 '../testing/gtest.gyp:gtest', 3675 '../testing/gtest.gyp:gtest',
3676 '../third_party/bzip2/bzip2.gyp:bzip2', 3676 '../third_party/bzip2/bzip2.gyp:bzip2',
3677 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 3677 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
3678 '../third_party/libjingle/libjingle.gyp:libjingle', 3678 '../third_party/libjingle/libjingle.gyp:libjingle',
3679 'syncapi_core', 3679 'syncapi_core',
3680 'sync_notifier', 3680 'sync_notifier',
(...skipping 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after
4689 # Use outputs of this action as inputs for the main target build. 4689 # Use outputs of this action as inputs for the main target build.
4690 # Seems as a misnomer but makes this happy on Linux (scons). 4690 # Seems as a misnomer but makes this happy on Linux (scons).
4691 'process_outputs_as_sources': 1, 4691 'process_outputs_as_sources': 1,
4692 }, 4692 },
4693 ], # 'actions' 4693 ], # 'actions'
4694 }, 4694 },
4695 ] 4695 ]
4696 }], # 'coverage!=0' 4696 }], # 'coverage!=0'
4697 ], # 'conditions' 4697 ], # 'conditions'
4698 } 4698 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/syncable/syncable_unittest.cc ('k') | chrome/common/net/gaia/google_service_auth_error_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698