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: content/content_tests.gypi

Issue 695913003: Add more allocator.gyp:allocator dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix two more; now i can build 'all' in 32-bit Created 6 years, 1 month 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 | « components/components_tests.gyp ('k') | ui/app_list/app_list.gyp » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 'browser/renderer_host/input/input_router_impl_perftest.cc', 1067 'browser/renderer_host/input/input_router_impl_perftest.cc',
1068 'common/cc_messages_perftest.cc', 1068 'common/cc_messages_perftest.cc',
1069 'test/run_all_perftests.cc', 1069 'test/run_all_perftests.cc',
1070 ], 1070 ],
1071 'conditions': [ 1071 'conditions': [
1072 ['OS == "android"', { 1072 ['OS == "android"', {
1073 'dependencies': [ 1073 'dependencies': [
1074 '../testing/android/native_test.gyp:native_test_native_code', 1074 '../testing/android/native_test.gyp:native_test_native_code',
1075 ], 1075 ],
1076 }], 1076 }],
1077 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', {
1078 'dependencies': [
1079 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
1080 ],
1081 }],
1077 ], 1082 ],
1078 }, 1083 },
1079 { 1084 {
1080 'target_name': 'content_browser_test_support', 1085 'target_name': 'content_browser_test_support',
1081 'type': 'static_library', 1086 'type': 'static_library',
1082 'dependencies': [ 1087 'dependencies': [
1083 'content_shell_lib', 1088 'content_shell_lib',
1084 '../skia/skia.gyp:skia', 1089 '../skia/skia.gyp:skia',
1085 '../testing/gtest.gyp:gtest', 1090 '../testing/gtest.gyp:gtest',
1086 '../ui/accessibility/accessibility.gyp:ax_gen', 1091 '../ui/accessibility/accessibility.gyp:ax_gen',
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
1445 'dependencies': [ 1450 'dependencies': [
1446 '../testing/android/native_test.gyp:native_test_native_code', 1451 '../testing/android/native_test.gyp:native_test_native_code',
1447 ], 1452 ],
1448 }, { 1453 }, {
1449 'dependencies': [ 1454 'dependencies': [
1450 # Runtime dependencis. 1455 # Runtime dependencis.
1451 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 1456 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
1452 '../third_party/mesa/mesa.gyp:osmesa', 1457 '../third_party/mesa/mesa.gyp:osmesa',
1453 ], 1458 ],
1454 }], 1459 }],
1460 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', {
1461 'dependencies': [
1462 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
1463 ],
1464 }],
1455 ], 1465 ],
1456 }, 1466 },
1457 { 1467 {
1458 'target_name': 'content_gl_benchmark', 1468 'target_name': 'content_gl_benchmark',
1459 'type': '<(gtest_target_type)', 1469 'type': '<(gtest_target_type)',
1460 'dependencies': [ 1470 'dependencies': [
1461 'content.gyp:content_common', 1471 'content.gyp:content_common',
1462 'test_support_content', 1472 'test_support_content',
1463 '../base/base.gyp:test_support_base', 1473 '../base/base.gyp:test_support_base',
1464 '../testing/gtest.gyp:gtest', 1474 '../testing/gtest.gyp:gtest',
1465 '../third_party/WebKit/public/blink.gyp:blink', 1475 '../third_party/WebKit/public/blink.gyp:blink',
1466 '../ui/base/ui_base.gyp:ui_base', 1476 '../ui/base/ui_base.gyp:ui_base',
1467 '../ui/gfx/gfx.gyp:gfx', 1477 '../ui/gfx/gfx.gyp:gfx',
1468 '../ui/gfx/gfx.gyp:gfx_geometry', 1478 '../ui/gfx/gfx.gyp:gfx_geometry',
1469 '../ui/gl/gl.gyp:gl', 1479 '../ui/gl/gl.gyp:gl',
1470 ], 1480 ],
1471 'include_dirs': [ 1481 'include_dirs': [
1472 '..', 1482 '..',
1473 ], 1483 ],
1474 'sources': [ 1484 'sources': [
1475 'common/gpu/client/gl_helper_benchmark.cc', 1485 'common/gpu/client/gl_helper_benchmark.cc',
1476 ], 1486 ],
1487 'conditions': [
1488 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', {
1489 'dependencies': [
1490 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
1491 ],
1492 }],
1493 ],
1477 }, 1494 },
1478 ], 1495 ],
1479 }], 1496 }],
1480 ['(chromeos==1 or OS=="win" or OS=="android") and use_ozone==0', { 1497 ['(chromeos==1 or OS=="win" or OS=="android") and use_ozone==0', {
1481 'targets': [ 1498 'targets': [
1482 { 1499 {
1483 'target_name': 'video_decode_accelerator_unittest', 1500 'target_name': 'video_decode_accelerator_unittest',
1484 'type': '<(gtest_target_type)', 1501 'type': '<(gtest_target_type)',
1485 'dependencies': [ 1502 'dependencies': [
1486 '../base/base.gyp:base', 1503 '../base/base.gyp:base',
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
1983 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2000 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1984 }, 2001 },
1985 ], 2002 ],
1986 }], 2003 }],
1987 ], 2004 ],
1988 }, 2005 },
1989 ], 2006 ],
1990 }], 2007 }],
1991 ], 2008 ],
1992 } 2009 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | ui/app_list/app_list.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698