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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 18777006: Remove dependencies on /media for iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
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
« 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',
26 '../net/net.gyp:net', 25 '../net/net.gyp:net',
27 '../net/net.gyp:net_test_support', 26 '../net/net.gyp:net_test_support',
28 '../skia/skia.gyp:skia', 27 '../skia/skia.gyp:skia',
29 '../sync/sync.gyp:sync', 28 '../sync/sync.gyp:sync',
30 '../testing/gmock.gyp:gmock', 29 '../testing/gmock.gyp:gmock',
31 '../testing/gtest.gyp:gtest', 30 '../testing/gtest.gyp:gtest',
32 '../third_party/zlib/zlib.gyp:zlib', 31 '../third_party/zlib/zlib.gyp:zlib',
33 ], 32 ],
34 'export_dependent_settings': [ 33 'export_dependent_settings': [
35 'app/policy/cloud_policy_codegen.gyp:policy_test_support', 34 'app/policy/cloud_policy_codegen.gyp:policy_test_support',
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 'plugin', 298 'plugin',
300 'renderer', 299 'renderer',
301 'utility', 300 'utility',
302 '../content/content.gyp:content_gpu', 301 '../content/content.gyp:content_gpu',
303 '../content/content.gyp:content_plugin', 302 '../content/content.gyp:content_plugin',
304 '../content/content.gyp:content_ppapi_plugin', 303 '../content/content.gyp:content_ppapi_plugin',
305 '../content/content.gyp:content_renderer', 304 '../content/content.gyp:content_renderer',
306 '../content/content.gyp:content_utility', 305 '../content/content.gyp:content_utility',
307 '../content/content.gyp:content_worker', 306 '../content/content.gyp:content_worker',
308 '../ipc/ipc.gyp:test_support_ipc', 307 '../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',
446 '../net/net.gyp:net', 445 '../net/net.gyp:net',
447 '../net/net.gyp:net_test_support', 446 '../net/net.gyp:net_test_support',
448 '../sync/sync.gyp:test_support_sync_api', 447 '../sync/sync.gyp:test_support_sync_api',
449 '../sync/sync.gyp:test_support_sync_core', 448 '../sync/sync.gyp:test_support_sync_core',
450 '../sync/sync.gyp:test_support_sync_internal_api', 449 '../sync/sync.gyp:test_support_sync_internal_api',
451 '../sync/sync.gyp:test_support_sync_notifier', 450 '../sync/sync.gyp:test_support_sync_notifier',
452 '../testing/gmock.gyp:gmock', 451 '../testing/gmock.gyp:gmock',
453 '../testing/gtest.gyp:gtest', 452 '../testing/gtest.gyp:gtest',
454 'test_support_common', 453 'test_support_common',
455 'test_support_unit', 454 'test_support_unit',
(...skipping 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after
1903 '../webkit/browser/quota/mock_storage_client.h', 1902 '../webkit/browser/quota/mock_storage_client.h',
1904 ], 1903 ],
1905 'conditions': [ 1904 'conditions': [
1906 ['OS!="ios"', { 1905 ['OS!="ios"', {
1907 'dependencies': [ 1906 'dependencies': [
1908 'common/extensions/api/api.gyp:api', 1907 'common/extensions/api/api.gyp:api',
1909 '../components/components.gyp:autofill_content_test_util', 1908 '../components/components.gyp:autofill_content_test_util',
1910 '../components/component_strings.gyp:component_strings', 1909 '../components/component_strings.gyp:component_strings',
1911 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', 1910 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
1912 '../gpu/gpu.gyp:gpu_unittest_utils', 1911 '../gpu/gpu.gyp:gpu_unittest_utils',
1912 '../media/media.gyp:media_test_support',
1913 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', 1913 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared',
1914 '../third_party/cld/cld.gyp:cld', 1914 '../third_party/cld/cld.gyp:cld',
1915 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 1915 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
1916 '../third_party/libjingle/libjingle.gyp:libjingle', 1916 '../third_party/libjingle/libjingle.gyp:libjingle',
1917 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 1917 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
1918 '../tools/json_schema_compiler/test/json_schema_compiler_tests.gyp:j son_schema_compiler_tests', 1918 '../tools/json_schema_compiler/test/json_schema_compiler_tests.gyp:j son_schema_compiler_tests',
1919 '../ui/gl/gl.gyp:gl', 1919 '../ui/gl/gl.gyp:gl',
1920 '../v8/tools/gyp/v8.gyp:v8', 1920 '../v8/tools/gyp/v8.gyp:v8',
1921 '../webkit/plugins/webkit_plugins.gyp:test_mock_plugin_list', 1921 '../webkit/plugins/webkit_plugins.gyp:test_mock_plugin_list',
1922 '../webkit/webkit_resources.gyp:webkit_temp_resources', 1922 '../webkit/webkit_resources.gyp:webkit_temp_resources',
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
2645 # more details. 2645 # more details.
2646 'DebugInformationFormat': '3', 2646 'DebugInformationFormat': '3',
2647 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2647 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2648 }, 2648 },
2649 }, 2649 },
2650 }, 2650 },
2651 ], 2651 ],
2652 }], 2652 }],
2653 ], # 'conditions' 2653 ], # 'conditions'
2654 } 2654 }
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