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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 19002008: Revert "Remove dependencies on /media for iOS." (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | content/browser/browser_main_loop.cc » ('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 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',
11 'dependencies': [ 11 'dependencies': [
12 # NOTE: New dependencies should generally be added in the OS!="ios" 12 # NOTE: New dependencies should generally be added in the OS!="ios"
13 # dependencies block below, rather than here. 13 # dependencies block below, rather than here.
14 'app/policy/cloud_policy_codegen.gyp:policy_test_support', 14 'app/policy/cloud_policy_codegen.gyp:policy_test_support',
15 'browser', 15 'browser',
16 'chrome_resources.gyp:chrome_resources', 16 'chrome_resources.gyp:chrome_resources',
17 'chrome_resources.gyp:chrome_strings', 17 'chrome_resources.gyp:chrome_strings',
18 'chrome_resources.gyp:theme_resources', 18 'chrome_resources.gyp:theme_resources',
19 'common', 19 'common',
20 '../base/base.gyp:test_support_base', 20 '../base/base.gyp:test_support_base',
21 '../base/base.gyp:base_prefs_test_support', 21 '../base/base.gyp:base_prefs_test_support',
22 '../components/components.gyp:sessions_test_support', 22 '../components/components.gyp:sessions_test_support',
23 '../content/content.gyp:content_app', 23 '../content/content.gyp:content_app',
24 '../content/content.gyp:test_support_content', 24 '../content/content.gyp:test_support_content',
25 '../media/media.gyp:media_test_support',
25 '../net/net.gyp:net', 26 '../net/net.gyp:net',
26 '../net/net.gyp:net_test_support', 27 '../net/net.gyp:net_test_support',
27 '../skia/skia.gyp:skia', 28 '../skia/skia.gyp:skia',
28 '../sync/sync.gyp:sync', 29 '../sync/sync.gyp:sync',
29 '../testing/gmock.gyp:gmock', 30 '../testing/gmock.gyp:gmock',
30 '../testing/gtest.gyp:gtest', 31 '../testing/gtest.gyp:gtest',
31 '../third_party/zlib/zlib.gyp:zlib', 32 '../third_party/zlib/zlib.gyp:zlib',
32 ], 33 ],
33 'export_dependent_settings': [ 34 'export_dependent_settings': [
34 'app/policy/cloud_policy_codegen.gyp:policy_test_support', 35 'app/policy/cloud_policy_codegen.gyp:policy_test_support',
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 'plugin', 299 'plugin',
299 'renderer', 300 'renderer',
300 'utility', 301 'utility',
301 '../content/content.gyp:content_gpu', 302 '../content/content.gyp:content_gpu',
302 '../content/content.gyp:content_plugin', 303 '../content/content.gyp:content_plugin',
303 '../content/content.gyp:content_ppapi_plugin', 304 '../content/content.gyp:content_ppapi_plugin',
304 '../content/content.gyp:content_renderer', 305 '../content/content.gyp:content_renderer',
305 '../content/content.gyp:content_utility', 306 '../content/content.gyp:content_utility',
306 '../content/content.gyp:content_worker', 307 '../content/content.gyp:content_worker',
307 '../ipc/ipc.gyp:test_support_ipc', 308 '../ipc/ipc.gyp:test_support_ipc',
308 '../media/media.gyp:media_test_support',
309 '../ppapi/ppapi_internal.gyp:ppapi_shared', 309 '../ppapi/ppapi_internal.gyp:ppapi_shared',
310 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 310 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
311 '../webkit/support/webkit_support.gyp:glue_child', 311 '../webkit/support/webkit_support.gyp:glue_child',
312 ], 312 ],
313 'export_dependent_settings': [ 313 'export_dependent_settings': [
314 'renderer', 314 'renderer',
315 ], 315 ],
316 }, { # OS=="ios" 316 }, { # OS=="ios"
317 'sources/': [ 317 'sources/': [
318 # Exclude everything but iOS-specific files. 318 # Exclude everything but iOS-specific files.
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 'type': '<(gtest_target_type)', 435 'type': '<(gtest_target_type)',
436 'dependencies': [ 436 'dependencies': [
437 # NOTE: New dependencies should generally be added in the OS!="ios" 437 # NOTE: New dependencies should generally be added in the OS!="ios"
438 # dependencies block below, rather than here. 438 # dependencies block below, rather than here.
439 # Unit tests should only depend on: 439 # Unit tests should only depend on:
440 # 1) everything that the chrome binaries depend on: 440 # 1) everything that the chrome binaries depend on:
441 '<@(chromium_browser_dependencies)', 441 '<@(chromium_browser_dependencies)',
442 '<@(chromium_child_dependencies)', 442 '<@(chromium_child_dependencies)',
443 # 2) test-specific support libraries: 443 # 2) test-specific support libraries:
444 '../base/base.gyp:test_support_base', 444 '../base/base.gyp:test_support_base',
445 '../media/media.gyp:media_test_support',
445 '../net/net.gyp:net', 446 '../net/net.gyp:net',
446 '../net/net.gyp:net_test_support', 447 '../net/net.gyp:net_test_support',
447 '../sync/sync.gyp:test_support_sync_api', 448 '../sync/sync.gyp:test_support_sync_api',
448 '../sync/sync.gyp:test_support_sync_core', 449 '../sync/sync.gyp:test_support_sync_core',
449 '../sync/sync.gyp:test_support_sync_internal_api', 450 '../sync/sync.gyp:test_support_sync_internal_api',
450 '../sync/sync.gyp:test_support_sync_notifier', 451 '../sync/sync.gyp:test_support_sync_notifier',
451 '../testing/gmock.gyp:gmock', 452 '../testing/gmock.gyp:gmock',
452 '../testing/gtest.gyp:gtest', 453 '../testing/gtest.gyp:gtest',
453 'test_support_common', 454 'test_support_common',
454 'test_support_unit', 455 'test_support_unit',
(...skipping 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after
1906 '../webkit/browser/quota/mock_storage_client.h', 1907 '../webkit/browser/quota/mock_storage_client.h',
1907 ], 1908 ],
1908 'conditions': [ 1909 'conditions': [
1909 ['OS!="ios"', { 1910 ['OS!="ios"', {
1910 'dependencies': [ 1911 'dependencies': [
1911 'common/extensions/api/api.gyp:api', 1912 'common/extensions/api/api.gyp:api',
1912 '../components/components.gyp:autofill_content_test_util', 1913 '../components/components.gyp:autofill_content_test_util',
1913 '../components/component_strings.gyp:component_strings', 1914 '../components/component_strings.gyp:component_strings',
1914 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', 1915 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
1915 '../gpu/gpu.gyp:gpu_unittest_utils', 1916 '../gpu/gpu.gyp:gpu_unittest_utils',
1916 '../media/media.gyp:media_test_support',
1917 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', 1917 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared',
1918 '../third_party/cld/cld.gyp:cld', 1918 '../third_party/cld/cld.gyp:cld',
1919 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 1919 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
1920 '../third_party/libjingle/libjingle.gyp:libjingle', 1920 '../third_party/libjingle/libjingle.gyp:libjingle',
1921 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 1921 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
1922 '../tools/json_schema_compiler/test/json_schema_compiler_tests.gyp:j son_schema_compiler_tests', 1922 '../tools/json_schema_compiler/test/json_schema_compiler_tests.gyp:j son_schema_compiler_tests',
1923 '../ui/gl/gl.gyp:gl', 1923 '../ui/gl/gl.gyp:gl',
1924 '../v8/tools/gyp/v8.gyp:v8', 1924 '../v8/tools/gyp/v8.gyp:v8',
1925 '../webkit/plugins/webkit_plugins.gyp:test_mock_plugin_list', 1925 '../webkit/plugins/webkit_plugins.gyp:test_mock_plugin_list',
1926 '../webkit/webkit_resources.gyp:webkit_resources', 1926 '../webkit/webkit_resources.gyp:webkit_resources',
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
2653 # more details. 2653 # more details.
2654 'DebugInformationFormat': '3', 2654 'DebugInformationFormat': '3',
2655 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2655 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2656 }, 2656 },
2657 }, 2657 },
2658 }, 2658 },
2659 ], 2659 ],
2660 }], 2660 }],
2661 ], # 'conditions' 2661 ], # 'conditions'
2662 } 2662 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | content/browser/browser_main_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698