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

Side by Side Diff: components/components_tests.gyp

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android tests Created 6 years, 2 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
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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 ], 266 ],
267 'dependencies': [ 267 'dependencies': [
268 '../base/base.gyp:base_prefs_test_support', 268 '../base/base.gyp:base_prefs_test_support',
269 '../base/base.gyp:test_support_base', 269 '../base/base.gyp:test_support_base',
270 # TODO(blundell): Eliminate this dependency by having 270 # TODO(blundell): Eliminate this dependency by having
271 # components_unittests have its own pakfile. crbug.com/348563 271 # components_unittests have its own pakfile. crbug.com/348563
272 '../chrome/chrome_resources.gyp:packed_extra_resources', 272 '../chrome/chrome_resources.gyp:packed_extra_resources',
273 # TODO(blundell): Eliminate the need for this dependency in code 273 # TODO(blundell): Eliminate the need for this dependency in code
274 # that iOS shares. crbug.com/325243 274 # that iOS shares. crbug.com/325243
275 '../content/content_shell_and_tests.gyp:test_support_content', 275 '../content/content_shell_and_tests.gyp:test_support_content',
276 '../gin/gin.gyp:gin',
rmcilroy 2014/10/06 15:41:03 shouldn't be required (pulled in via test_support_
baixo 2014/10/07 14:53:27 Done.
276 '../sync/sync.gyp:sync', 277 '../sync/sync.gyp:sync',
277 '../sync/sync.gyp:test_support_sync_api', 278 '../sync/sync.gyp:test_support_sync_api',
278 '../testing/gmock.gyp:gmock', 279 '../testing/gmock.gyp:gmock',
279 '../testing/gtest.gyp:gtest', 280 '../testing/gtest.gyp:gtest',
280 '../ui/base/ui_base.gyp:ui_base', 281 '../ui/base/ui_base.gyp:ui_base',
281 '../ui/gfx/gfx.gyp:gfx', 282 '../ui/gfx/gfx.gyp:gfx',
282 '../ui/gfx/gfx.gyp:gfx_test_support', 283 '../ui/gfx/gfx.gyp:gfx_test_support',
283 284
284 'components_resources.gyp:components_resources', 285 'components_resources.gyp:components_resources',
285 286
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 }], 823 }],
823 ['OS != "ios" and android_webview_build == 0', { 824 ['OS != "ios" and android_webview_build == 0', {
824 'targets': [ 825 'targets': [
825 { 826 {
826 'target_name': 'components_perftests', 827 'target_name': 'components_perftests',
827 'type': '<(gtest_target_type)', 828 'type': '<(gtest_target_type)',
828 'dependencies': [ 829 'dependencies': [
829 '../base/base.gyp:base', 830 '../base/base.gyp:base',
830 '../base/base.gyp:test_support_perf', 831 '../base/base.gyp:test_support_perf',
831 '../content/content_shell_and_tests.gyp:test_support_content', 832 '../content/content_shell_and_tests.gyp:test_support_content',
833 '../gin/gin.gyp:gin',
rmcilroy 2014/10/06 15:41:03 ditto
baixo 2014/10/07 14:53:27 Done.
832 '../testing/gtest.gyp:gtest', 834 '../testing/gtest.gyp:gtest',
833 'components.gyp:visitedlink_browser', 835 'components.gyp:visitedlink_browser',
834 ], 836 ],
835 'include_dirs': [ 837 'include_dirs': [
836 '..', 838 '..',
837 ], 839 ],
838 'sources': [ 840 'sources': [
839 'visitedlink/test/visitedlink_perftest.cc', 841 'visitedlink/test/visitedlink_perftest.cc',
840 ], 842 ],
841 'conditions': [ 843 'conditions': [
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
974 'dependencies': [ 976 'dependencies': [
975 '../base/allocator/allocator.gyp:allocator', 977 '../base/allocator/allocator.gyp:allocator',
976 ], 978 ],
977 }], 979 }],
978 ], 980 ],
979 }, 981 },
980 ], 982 ],
981 }], 983 }],
982 ], 984 ],
983 } 985 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698